/* General Styling */
:root {
    --primary-color: #F8B4D1; /* Pink from flyer */
    --secondary-color: #F8D9E9; /* Lighter pink */
    --text-color: #333;
    --background-color: #fff;
    --card-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.hero-section {
    background: url('/assets/images/background-pattern.png') no-repeat center center/cover;
    background-color: var(--primary-color);
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    max-height: 240px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 350px;
}

.main-title {
    font-size: 2.5em;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin: 0 20px;
}

.character-image {
    max-width: 950px;
    height: auto;
    display: block;
    max-height: 230px;
}

/* Contact Form Section */
.contact-section {
    padding: 0px 20px 20px 20px;
    text-align: center;
}

.contact-form-container {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
}

.contact-form-container h2 {
    color: #ff76a7;
    margin-top: 0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.contact-form-container .cta-button {
    width: 100%;
    border: 2px solid #333;
}

.gdpr-consent {
    text-align: center;
    font-size: 0.9em;
}

.gdpr-consent input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

/* Mobile Adjustments for the form */
@media (max-width: 600px) {
    .contact-form-container {
        padding: 20px;
    }
}

/* Nav Bar Links */
.header-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1169px;
    margin: 20px auto;
    padding: 0 20px;
}

.nav-link,
.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    text-decoration: none;
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid var(--primary-color);
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid #ff76a7;
}

.contact-link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Active State for Menu Links */
.nav-link.active {
    background-color: #ffb2ce;
    color: #000000;
    border: 2px solid #ff76a7;
}

.nav-link.active:hover {
    background-color: #ff76a7;
    color: #ffffff;
}

.contact-link.active {
    color: #000000;
    border: 2px solid #ff76a7;
}

.contact-link {
    background-color: #ff76a7;
    color: #000000;
    border: 2px solid #333;
}

.contact-link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* --- Content Sections --- */
.content-section, .services-section, .testimonials-section {
    padding: 0 20px 20px 20px;
    text-align: center;
}

.content-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 0 20px 20px 20px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--card-shadow);
}

.content-text {
    flex: 3;
    padding-right: 40px;
    text-align: left;
}

.content-text h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 16px;
}

.content-text h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 6px;
}

.content-text p {
    line-height: 1.6;
    color: var(--text-color);
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0.2em;
    margin-block-end: 0.6em;
    padding-inline-start: 25px;
    unicode-bidi: isolate;
}

.content-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Specific styles for the "Why Us" page content container */
.why-us-container.content-container {
    display: block;
    text-align: center;
    padding: 0px 20px 20px 20px;
}

.why-us-container h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-us-container h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-us-container p {
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.why-us-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-us-container li {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    flex: 1 1 250px;
    text-align: left;
    border: 2px solid var(--primary-color);
}

.why-us-container li strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ff76a7;
}

/* Specific styles for the "Privacy" page content container */
.privacy-container.content-container {
    display: block;
    text-align: center;
    padding: 0px 20px 20px 20px;
}

.privacy-container h2 {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy-container h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-container p {
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.privacy-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.privacy-container li {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    flex: 1 1 250px;
    text-align: left;
    border: 2px solid var(--primary-color);
}

.privacy-container li strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ff76a7;
}

/* Services Section */
.services-container {
    background-color: var(--primary-color);
    padding: 1px 40px 30px 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.services-container .section-title {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.service-card {
    background-color: #f8f8f8;
    padding: 32px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-container {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff76a7;
    color: #333;
    padding: 9px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3e3e3e;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9em;
}

.cta-button:hover {
    background-color: #ff76a7;
}


/* Testimonials Section */
.testimonials-container {
    background-color: white;
    padding: 0 30px 30px 30px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--card-shadow);
}

.testimonials-container .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    text-align: center;
}

/* Price List */
.price-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.price-item {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    flex: 1;
    text-align: left;
    border: 2px solid var(--primary-color);
}

.price-item h4 {
    margin-top: 0;
    color: #ff539c;
}

.price-item ul {
    list-style-type: none;
    padding: 0;
}

.price-item li {
    margin-bottom: 10px;
    font-weight: 500;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* --- New Footer --- */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px 10px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-column {
    flex-grow: 1;
    text-align: left;
}

.footer-column h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 5px 0;
    color: #333;
}

.copyright {
    font-size: 0.75em;
    color: #333;
    font-weight: 600;
}

/* Social Media Icons */
.social-icons {
    margin-bottom: 1px;
}

.social-icons a {
    color: #333;
    font-size: 1.8em;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}


/* --- New Styles for Areas We Cover List --- */
.areas-list {
    list-style: none; /* Removes default bullet points */
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 15px; /* Space between list items */
    text-align: left;
}

.areas-list li {
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
}

/* --- Mobile-First Media Queries --- */
@media (max-width: 840px) {
    .header-nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .left-links,
    .right-link {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav-link,
    .contact-link {
        flex: 1;
        text-align: center;
        margin: 0 2.5px;
        padding: 10px 5px; /* Reduced padding for mobile */
    }
    .content-container {
        flex-direction: column;
    }
    .content-text {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .price-list {
        flex-direction: column;
    }
    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
    }
    .main-title {
        margin-top: 20px;
    }
    .character-image {
        margin: 0;
    }
    /* FIX: Areas list is too wide on mobile, make it a single column */
    .areas-list {
        grid-template-columns: 1fr;
    }
    
    .why-us-container.content-container {
        padding: 20px;
    }
    .why-us-container ul {
        flex-direction: column;
    }
    .why-us-container li {
        flex-basis: 100%;
    }

    /* Footer changes for mobile */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-contact {
        text-align: center;
    }
}