/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1A2634;
    --accent-teal: #2A9D8F;
    --text-charcoal: #4A4A4A;
    --background-white: #F7F7F7;
    --pure-white: #ffffff;
    --light-gray: #f8f9fa;
    --border-gray: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-charcoal);
    background-color: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-navy);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px 1rem 0;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hide mobile-only menu items on desktop */
.mobile-only {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 38, 52, 0.7), rgba(26, 38, 52, 0.7)), url('../images/ChatGPT Image Jul 17, 2025, 03_46_26 PM.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--pure-white);
}

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

.hero-content {
    animation: fadeInUp 0.8s ease;
    display: flex;
    align-items: center;
    gap: 6rem;
    text-align: left;
}

/* iPad and tablet styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    /* Hero optimized for iPad portrait */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-logo-img {
        height: 300px;
    }

    .hero-tagline {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.3rem;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Services in single column but with better spacing */
    .service-z-row {
        grid-template-columns: 1fr !important;
        gap: 50px;
        margin-bottom: 80px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 80px;
    }

    .service-z-row .service-content,
    .service-z-row.right .service-content {
        order: 2 !important;
        text-align: center;
        padding: 20px;
    }

    .service-z-row .service-image,
    .service-z-row.right .service-image {
        order: 1 !important;
    }

    .service-content h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .service-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .service-highlights {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px auto;
    }

    .service-img {
        height: 280px;
        border-radius: 15px;
    }

    /* Better container width for iPad */
    .container {
        max-width: 90% !important;
        padding: 0 30px;
    }

    /* Navigation adjustments */
    .nav-container {
        padding: 1rem 30px 1rem 20px;
    }

    .logo {
        height: 90px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}


.hero-tagline {
    font-size: 3.5rem;
    color: var(--accent-teal);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.hero-logo {
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease;
}

.hero-text {
    flex: 1;
}

.hero-logo-img {
    height: 400px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--pure-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    background-color: var(--accent-teal);
    color: var(--pure-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.cta-button:hover {
    background-color: #228B7A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
}


/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-charcoal);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-z-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-z-row.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-z-row.right {
    grid-template-columns: 1fr 1fr;
}

.service-z-row.right .service-content {
    order: 2;
}

.service-z-row.right .service-image {
    order: 1;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-charcoal);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.service-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-charcoal);
    font-size: 1rem;
}

.service-highlights li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    display: inline-block;
    background-color: var(--accent-teal);
    color: var(--pure-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.service-cta:hover {
    background-color: #228B7A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.qualifications {
    margin-top: 2rem;
    padding: 25px;
    background-color: var(--pure-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.qualifications h3 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.qualifications ul {
    list-style: none;
}

.qualifications li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.qualifications li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

.resolution-membership {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-teal);
}

.resolution-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.resolution-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.resolution-text {
    flex: 1;
}

.resolution-text p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.resolution-text a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
}

.resolution-text a:hover {
    text-decoration: underline;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-charcoal);
    margin-bottom: 3rem;
}

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

.service-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-teal);
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-charcoal);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
    color: var(--pure-white);
}

.testimonials h2 {
    text-align: center;
    color: var(--pure-white);
    margin-bottom: 3rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

/* Desktop 3-up grid */
@media (min-width: 1024px) {
    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-item {
    display: block;
    margin-bottom: 0;
    position: relative;
    height: 100%;
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: none;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-teal), transparent, var(--accent-teal));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-content:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.testimonial-content:hover::before {
    opacity: 1;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-teal), #248277);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.4);
}

.quote-icon::after {
    content: '\201C';
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--accent-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}


/* Community Section */
.community {
    padding: 80px 0;
    background-color: var(--background-white);
}

.community h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.community-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.community-item {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: center;
}

.community-item h3 {
    color: var(--accent-teal);
    margin-bottom: 15px;
}

.community-item h3 a {
    color: var(--accent-teal);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.community-item h3 a:hover {
    color: #228B7A;
    border-bottom: 2px solid #228B7A;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.faq-item h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-charcoal);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--light-gray) 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-teal);
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.submit-button {
    background-color: var(--accent-teal);
    color: var(--pure-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.submit-button:hover {
    background-color: #228B7A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
}

.contact-info {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.contact-info h3 {
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.privacy-note {
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-charcoal);
    margin: 20px 0;
}

.consultation-info {
    background-color: var(--accent-teal);
    color: var(--pure-white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.consultation-info h4 {
    color: var(--pure-white);
    margin-bottom: 15px;
}

.consultation-info p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--pure-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--pure-white);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    height: 240px;
    width: auto;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-light);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* Show mobile-only service links on mobile */
    .mobile-only {
        display: block;
    }

    /* Style service sub-links */
    .nav-sublink {
        font-size: 0.9rem;
        padding-left: 20px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 400;
    }

    .nav-sublink::before {
        content: '\2192 ';
        color: var(--accent-teal);
        margin-right: 5px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-tagline {
        font-size: 2.8rem;
    }

    .hero-logo-img {
        height: 320px;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .service-z-row {
        grid-template-columns: 1fr !important;
        gap: 35px;
        margin-bottom: 70px;
        text-align: center;
    }

    .service-z-row .service-highlights {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px auto;
    }

    .service-z-row .service-content,
    .service-z-row.right .service-content {
        order: 2 !important;
    }

    .service-z-row .service-image,
    .service-z-row.right .service-image {
        order: 1 !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .service-content {
        padding: 10px;
    }

    .service-content h3 {
        text-align: center;
    }

    .service-content p {
        text-align: center;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .service-img {
        height: 250px;
    }

    .services-detailed {
        grid-template-columns: 1fr;
    }

    .testimonials-container::before {
        display: none;
    }

    .testimonial-item {
        flex-direction: column !important;
        margin-bottom: 40px;
    }

    .testimonial-item:nth-child(even) {
        flex-direction: column !important;
    }

    .testimonial-content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 40px 30px;
    }


    .testimonial-text {
        font-size: 1rem;
    }

    .community-content {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-tagline {
        font-size: 2.2rem;
    }

    .hero-logo-img {
        height: 280px;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .nav-container {
        padding: 1rem 1rem 1rem 15px;
    }


    .contact-form,
    .contact-info {
        padding: 25px;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Loading state for form */
.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Error message */
.error-message-general {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Mobile responsive styles for Resolution membership */
@media screen and (max-width: 768px) {
    .resolution-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .resolution-logo {
        width: 100px;
        margin-bottom: 5px;
    }

    .resolution-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 120px 20px 60px;
    background-color: var(--pure-white);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-gray);
}

.policy-header h1 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.policy-header .last-updated {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.policy-content h3 {
    color: var(--accent-teal);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    margin-bottom: 1.2rem;
    color: var(--text-charcoal);
    font-size: 1.05rem;
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-charcoal);
    line-height: 1.7;
}

.policy-content a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--primary-navy);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Footer privacy policy link */
.footer-bottom a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

/* Mobile responsive for privacy policy */
@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 100px 15px 40px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 1rem;
    }

    .policy-content ul {
        margin-left: 1.5rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-navy);
    color: var(--pure-white);
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--accent-teal);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-text a {
    color: var(--accent-teal);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #3ec4b4;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-teal);
    color: var(--pure-white);
}

.cookie-btn-accept:hover {
    background-color: #228B7A;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-decline:hover {
    border-color: var(--pure-white);
    background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 14px;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 160px;
    }
}
