/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    min-height: 100vh;
    color: white;
}
/* Nutrition Section */
.nutrition-section {
    background: #f7fbf1;
    padding: 60px 20px;
    text-align: center;
}
.nutrition-section h2 {
    font-family: "Cambria Regular", Sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #14453d;
}
.nutrition-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #000000;
    font-family: "Cambria Regular", Sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
}

/* Practice Areas */
.practice-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
}
.practice-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    align-items: center;
}
.practice-image {
    width: 40%;
    background-size: cover;
    background-position: center;
    text-align: center;
    min-height: 75vh;
    color: white;
}
.practice-content {
    width: 60%;
   padding-left: 60px;
}

.practice-content h2 {
    font-family: "Cambria Regular", Sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0px !important;
    color: #14453d;
}
.practice-text {
    max-width: 800px;
    color: #000000;
    margin-top: 0px !important;
    font-family: "Cambria Regular", Sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

/* Gallery */
.gallery-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh;
    color: white;
}

/* Contact Section */
.contact-section {
    background: #f5f8f4;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    min-height: 50vh;
    color: white;
}
.contact-section a {
    color: #1a3c34;
    text-decoration: none;
    font-weight: bold;
}
	
@media (max-width: 1200px) {
	
}
	
@media (max-width: 992px) {
	
}

@media (max-width: 768px) {
    .practice-wrapper {
        flex-direction: column;
    }
    .gallery-section img {
        width: 100%;
    }
}

@media (max-width: 576px) {
	.hero {
        min-height: 50vh;
    }
    
    .practice-image {
        width: 100%;
        min-height: 40vh;
    }
    
    .practice-content {
       width: 100%;
       padding: 15px;
    }
    
    .gallery-section {
        min-height: 40vh;
    }
}