:root {
    --primary-brand-color: #66BB6A; /* Soft Green */
    --secondary-accent-color: #FFB366; /* Soft Orange/Peach */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #2c3e50; /* Deep blue-gray */
    --border-subtle: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --focus-outline: #66BB6A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden; 
}
.header-content{
    background-color: var(--bg-light);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px var(--shadow-light);
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-brand-color);
    text-decoration: none;
    gap: 0.5rem;
}
.logo-icon{
    height: 5.8rem;
    width: auto;
    display: block;
}
.logo-text{
    font-size: 2rem;
}
.nav{
    display: flex;
    gap: 1.7rem;
}

.nav-link{
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    transform: color 0.1s ease;
}

.nav-link:hover, .nav-link:focus{
    color: var(--primary-brand-color);
    outline: 2px solid var(--focus-outline);
    outline-offset: 3px;
    border-radius: 3px;
}
@media  screen and (max-width:768px) {
    .header-content{
        padding:0.8rem 1rem;
    }
    .logo{
        font-size: 1.5rem;
    }
    .logo-icon{
        height: 5rem;
    }
    .nav{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-sizing: 0 5px 15px var(--shadow-medium);
        padding: 1rem 0;
        border-top: 1px solid var(--border-subtle);
    }
    .nav-link{
        padding: 0.8rem 1.5rem;
        text-align: center;
        border-bottom: 1px solidrgba(0,0,0,0.05);
    }
    .nav-link:last-child {
        border-bottom: none; 
    }
}

.hero-section{
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-dark);
    padding: 4rem 2rem;
    margin: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f7fcf7 100%);
}
.hero-content{
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}
.hero-content h1{
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-brand-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; 
}
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px; 
    transition: all 0.3s ease;
    border: 2px solid transparent; 
}

.btn-primary {
    background-color: var(--primary-brand-color);
    color: var(--text-light);
    border-color: var(--primary-brand-color);
}

.btn-primary:hover,.btn-primary:focus {
    background-color: var(--secondary-accent-color);
    border-color: var(--secondary-accent-color);
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    outline: none; 
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-brand-color);
    border-color: var(--primary-brand-color);
}

.btn-secondary:hover,.btn-secondary:focus {
    background-color: var(--primary-brand-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}
@media screen and (max-width:768px) {
    .hero-section{
        min-height: 70vh;
        padding: 3rem 1rem;
    }
    .hero-content h1{
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn{
        padding: 0.8rem 1.5rem;
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-heading{
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem; 
    line-height: 1.2;
}
.sub-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-brand-color); 
    text-align: center;
    margin-top: 3rem; 
    margin-bottom: 1.5rem;
}
.problem-solution-section {
    background-color: var(--bg-light); 
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-subtle); 
}

.problem-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem; 
    justify-content: center;
}

.problem-card {
    background-color: #fff; 
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light); /* Soft shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px); /* Subtle lift on hover */
    box-shadow: 0 8px 25px var(--shadow-medium); 
}

.card-icon {
    width: 60px; 
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-brand-color); 
}
.problem-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card p {
    font-size: 1rem;
    color: #555; 
    line-height: 1.6;
}

/* --- Responsive Adjustments for Problem/Solution Section --- */
@media screen and (max-width: 767px) {
    .problem-solution-section {
        padding: 4rem 0; /* Reduce padding on mobile */
    }

    .problem-points {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 1.5rem;
    }

    .problem-card {
        padding: 2rem 1.5rem; /* Adjust card padding for mobile */
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .problem-card h3 {
        font-size: 1.3rem;
    }

    .problem-card p {
        font-size: 0.95rem;
    }

    .section-heading {
        margin-bottom: 2rem;
    }
    .sub-heading {
        margin-top: 2rem;
    }
}

.features-section {
    background-color: var(--bg-light); 
    padding: 6rem 0;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2.5rem; 
    max-width: 1000px;
    margin: 0 auto; 
}

.feature-item {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.feature-icon {
    width: 70px; 
    height: 70px;
    margin-bottom: 1.5rem;
    color: var(--primary-brand-color); 
}

.feature-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* --- Responsive Adjustments for Features/Benefits Section --- */
@media screen and (max-width: 767px) {
    .features-section {
        padding: 4rem 0;
    }

    .feature-grid {
        grid-template-columns: 1fr; /* Stack features vertically on mobile */
        gap: 1.5rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }
}

.free-guide-section {
    background-color: #e6f7e8; 
    padding: 5rem 0; 
    text-align: center; 
    border-top: 1px solid var(--border-subtle); 
    border-bottom: 1px solid var(--border-subtle);
}

.free-guide-section .section-heading {
    color: var(--text-dark); 
    margin-bottom: 1.5rem; 
}

.guide-description {
    font-size: 1.15rem;
    color: #555; 
    max-width: 700px; 
    margin: 0 auto 2.5rem auto; 
    line-height: 1.7;
}

.guide-cta {
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 1rem; 
}
@media screen and (max-width: 767px) {
    .free-guide-section {
        padding: 3rem 0; 
    }

    .guide-description {
        font-size: 1rem;
        padding: 0 1rem; 
        margin-bottom: 2rem;
    }
}

.testimonial-cta-section {
    background-color: var(--primary-brand-color);
    padding: 6rem 0;
    color: var(--text-light); 
    text-align: center;
}

.testimonial-box {
    background-color: rgba(255, 255, 255, 0.9); 
    color: var(--text-dark);
    padding: 3rem 2.5rem;
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    max-width: 800px;
    margin: 0 auto 4rem auto; 
    position: relative;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
}
.testimonial-title{
    font-size: 1.8rem;
    font-weight: bold;
}

.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 2rem;
}

.testimonial-card{
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    box-shadow: 0 2px 4px var(--shadow-light);
    padding: 1.2rem;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.testimonial-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px var(--shadow-medium);
    border-color: var(--primary-brand-color);
}

.testimonial-text{
    color: #555;
    font-size: 0.875rem;
    font-style: italic;
}

.testimonial-details{
    margin-top: auto;
}

.testimonial-author{
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
}

.testimonial-desc{
    font-size: 0.875rem;
    color: #777;
    font-size: normal;
}

.cta-content {
    background-color: var(--secondary-accent-color);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.cta-content .section-heading {
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}


.contact-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    background-color: var(--bg-light);
    padding: 4rem; 
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center; 
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(102, 187, 106, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; 
}

.contact-icon i {
    font-size: 1.6rem; 
    color: var(--primary-brand-color);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-text a, 
.contact-text span {
    font-size: 1rem;
    color:#555
    /* transition: color 0.2s ease; */
}

.contact-text a:hover {
    color: var(--primary-brand-color); 
}
.contact-form{
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group{
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem; 
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-brand-color);
    box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.2); /* Focus ring */
}

.contact-form textarea {
    min-height: 180px; 
    resize: vertical;
}

.contact-form .btn-primary {
    width: auto;
    align-self: flex-start; /* Align button to start */
    margin-top: 1rem;
}


@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 3rem 1rem;
    }
    .contact-form{
        width: 100%;
        max-width: 500px;
    }
    .contact-form .btn-primary {
        align-self: center;
    }
    .contact-details {
        align-items: center;
        margin-bottom: 2rem;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .contact-icon{
        margin-bottom: 0.5rem;
    }
} 

/* --- Footer Section Styles --- */
.main-footer {
    background-color: var(--bg-dark); 
    color: var(--text-light);
    padding: 4rem 0 1.5rem 0; 
}

.main-footer .container {
    display: flex;
    flex-direction: column; 
    gap: 2rem;
    align-items: center; 
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem;
    width: 100%; 
    text-align: left; 
}

.footer-col {
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-accent-color); 
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #bbb; 
}

.footer-col p a{
    color: var(--secondary-accent-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #bbb;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
    color: var(--primary-brand-color);
    outline: 1px dashed var(--primary-brand-color);
    outline-offset: 3px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-accent-color); 
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-about .logo-icon {
    height: 30px;
}
.footer-about .logo-text {
    color: var(--secondary-accent-color);
}


.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 30px; 
    height: 30px;
    filter: invert(100%) brightness(80%); 
    transition: filter 0.3s ease;
}

.social-icon:hover {
    filter: invert(0%) brightness(150%) sepia(100%) hue-rotate(80deg) saturate(500%);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #999;
}

.footer-terms a {
    color: #999;
    transition: color 0.2s ease;
}

.footer-terms a:hover {
    color: var(--primary-brand-color);
}

/* --- Responsive Adjustments for Testimonial/CTA and Footer --- */
@media screen and (min-width: 768px) {
    .testimonial-cta-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-box {
        padding: 3.5rem 3rem;
        font-size: 1.2rem;
    }

    .cta-content {
        margin-top: 4rem; 
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr); 
        text-align: left; 
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: row; 
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) { 
    .btn-large {
        width: 100%; 
        max-width: 280px;
    }
}