body {
    margin: 0;
    padding: 0; 
    color: #000000;
    background-color: #F5F2EE; 

    height: 100%;
}

/* NAVIGATION shop */ 
.navbar {
    background: #F5F2EE;             /* from my color theme */
    color: black;
}

.navleft a {
    color: black;
}

.navcenter p {
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 300px;
}

/* CARE CONTAINER */
.carecontainer {
    background-image: url('Finalimages/careback1.jpg');  /* background image of the page */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* fixes image */
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding-top: 150px; 
    padding-bottom: 50px;
}

.carebox {
    width: 90%;
    max-width: 700px; 
    background-color: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 30px; 
    z-index: 10; 
}

.caretitle { /*inside the box */
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    color: black;
    margin-bottom: 25px;
}

/* Groups */
.secondpart h4 {
    text-transform: uppercase;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-top: 30px;
}

.careblock {
    display: grid;
    grid-template-areas: 
        "title button"
        "caretext1 button"
        "description description";
    grid-template-columns: 1fr auto; 
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.careblock:last-child {
    border-bottom: none;
}

.careblock h3 {
    grid-area: title;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-bottom: 7px;
}

.careblock .caretext1 {
    grid-area: caretext1;
    margin: 0;
    font-size: 14px;
    color: #212121;
}

.careblock .description {
    grid-area: description;
    margin-top: 5px;
    font-size: 14px;
    color: #686767;
}

/* Button */
.seemore-link {
    
    background-color: #92532f; 
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 15px;
}


.seemore-link a {
    color: white;
   
}

.seemore-link:hover {
    color: #643a21;
}

/* FOOTER FOR CARE PAGE */
:root {
    --scroll-color: #F5F2EE; 
    --text-color: #92532f; 
}

.footer {
    background-color: #F5F2EE;
}

.footersection a {
    background-color: #92532f;
    color: #F5F2EE;
}

.footersection a:hover {
    background-color:  #704025;
}

.footerbox h3 {
    color: #92532f;
}

.footerbox ul a {
    color: #92532f;
}

.footerbox {
    color: #92532f;
}