/* Base & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
}

body {
    background-color: #fff8f1; /* soft peach background */
    color: #3d3d3d;
    line-height: 1.6;
}

/* Container for consistent width */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #f28c8c; /* warm coral pink */
    padding: 20px 0;
    color: #fffaf2;
}

    header h1 {
        font-family: 'Palatino Linotype', serif;
        font-size: 2.5rem;
        text-align: center;
    }

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

    nav ul li {
        margin: 0 15px;
    }

        nav ul li a {
            color: #fffaf2;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

            nav ul li a:hover {
                color: #ffe5a9; /* soft yellow */
            }

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #d2f0f5, #fef6e4); /* soft teal to light peach */
    padding: 60px 20px;
    text-align: center;
    color: #3e3b32;
}

    .hero h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto 30px;
    }

/* Button */
.btn {
    background-color: #ffd166; /* vibrant yellow */
    color: #3d3d3d;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn:hover {
        background-color: #fca311; /* deeper orange-yellow */
        color: #fff;
    }

.features-section {
    margin: 50px 0;
}

.features-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.feature {
    background-color: #e0f4ff;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 calc(25% - 20px); /* 4 per row with gap */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

    .feature h3 {
        margin-bottom: 15px;
        font-size: 1.5rem;
        color: #2d4f6c;
    }

    .feature p {
        font-size: 1rem;
        color: #4a4a4a;
    }

    .feature .btn {
        margin-top: 15px;
    }

/* Testimonial Section */
.testimonial-section {
    background-color: #a2d2ff;
    color: #2b2b2b;
    padding: 40px 20px;
    font-style: italic;
}

    .testimonial-section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-family: 'Palatino Linotype', serif;
        font-size: 2rem;
    }

blockquote {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.5;
}

    blockquote footer {
        margin-top: 10px;
        font-weight: bold;
        font-style: normal;
    }

/* Footer */
footer {
    background-color: #264653;
    color: #f0f0f0;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature {
        flex: 1 1 45%;
        max-width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .feature {
        flex: 1 1 90%;
    }
}

.about-page .section-heading {
    color: #f28c8c;
    font-family: 'Palatino Linotype', serif;
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: center;
}

.card {
    background-color: #fffefc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 25px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-box blockquote {
    font-style: italic;
    color: #444;
    border-left: 4px solid #f28c8c;
    padding-left: 15px;
    margin: 0;
}

.testimonial-box footer {
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    font-style: normal;
}

.about-flex {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 60%;
}

.about-image {
    flex: 1 1 35%;
    text-align: center;
}

    .about-image img {
        max-width: 60%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

/* Make image stack on smaller screens */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image {
        margin-top: 20px;
        width: 100%;
    }
}

.testimonial-card {
    background-color: #fef6e4;
    border-left: 6px solid #f28c8c;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #444;
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    color: #3d3d3d;
}
