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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Ad Disclosure */
.ad-disclosure {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.813rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.938rem;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

/* Navigation */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-menu.active {
    max-height: 400px;
}

.nav-menu li {
    border-top: 1px solid #f0f0f0;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f8f9fa;
    color: #2c5f8d;
}

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.cta-btn.primary {
    background: #27ae60;
    color: #fff;
}

.cta-btn.primary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #2c5f8d;
    border: 2px solid #2c5f8d;
}

.cta-btn.secondary:hover {
    background: #2c5f8d;
    color: #fff;
}

.cta-btn.large {
    padding: 18px 45px;
    font-size: 1.125rem;
}

/* Sections */
section {
    padding: 60px 0;
}

.alt-bg {
    background: #f8f9fa;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

section p {
    margin-bottom: 15px;
}

.section-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 40px;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
}

.intro-content {
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-section h2 {
    margin-bottom: 30px;
}

.story-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.inline-cta {
    margin-top: 40px;
    text-align: center;
}

/* Services */
.services-highlight {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.price {
    font-size: 1.75rem;
    color: #27ae60;
    font-weight: 700;
}

.service-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 30px;
    background: #2c5f8d;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #1a3a52;
    transform: translateY(-2px);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

/* Trust Section */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 1.125rem;
    color: #555;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #2c5f8d;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f8d;
    text-align: right;
}

/* Form Section */
.form-section {
    padding: 80px 0;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.125rem;
    color: #555;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d;
}

.form-group textarea {
    resize: vertical;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    background: #1a252f;
    padding: 25px 20px;
    text-align: center;
    font-size: 0.938rem;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #95a5a6;
}

.disclaimer {
    font-size: 0.813rem;
    color: #7f8c8d;
    line-height: 1.5;
    max-width: 800px;
    margin: 15px auto 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 80px 0;
}

.about-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-card h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
    font-size: 1.375rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.member-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.375rem;
}

.member-title {
    color: #2c5f8d;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    color: #666;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
}

.approach-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: #2c5f8d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

.why-us-section {
    padding: 80px 0;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.why-item h3 {
    color: #2c5f8d;
    margin-bottom: 10px;
}

.why-item p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* Services Page */
.services-intro {
    padding: 60px 0;
    text-align: center;
}

.services-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.detailed-services {
    padding: 40px 0;
}

.service-detail {
    padding: 50px 0;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-header h2 {
    margin: 0;
}

.service-tagline {
    font-size: 1.125rem;
    color: #666;
    font-style: italic;
}

.service-price-tag {
    font-size: 2.5rem;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-content h3 {
    color: #2c5f8d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-includes {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-includes li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.service-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.comparison-section {
    padding: 60px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table thead th {
    background: #2c5f8d;
    color: #fff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.faq-section {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #2c5f8d;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-detail h3 {
    color: #2c5f8d;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact-detail p {
    color: #666;
    line-height: 1.7;
}

.office-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.office-info h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
}

.office-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-placeholder {
    background: #e0e0e0;
    padding: 60px 30px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
}

.map-placeholder p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.visit-info {
    padding: 60px 0;
}

.info-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
}

.info-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 0;
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-hero h1 {
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

.selected-service-info {
    margin-top: 30px;
}

.selected-service-text {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.125rem;
    color: #333;
}

.next-steps {
    padding: 60px 0;
    background: #f8f9fa;
}

.steps-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    min-width: 50px;
    height: 50px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-desc h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-desc p {
    color: #666;
    line-height: 1.7;
}

.thanks-resources {
    padding: 60px 0;
}

.resource-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.resource-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.resource-card h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
}

.resource-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.resource-link {
    color: #2c5f8d;
    font-weight: 600;
    text-decoration: underline;
}

.resource-link:hover {
    color: #1a3a52;
}

.thanks-cta {
    padding: 60px 0;
}

.thanks-cta h2 {
    margin-bottom: 15px;
}

.thanks-cta p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    color: #2c5f8d;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2c5f8d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a3a52;
}

.legal-content strong {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table thead th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        max-height: none;
        border: none;
        gap: 5px;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 10px 15px;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: 250px;
    }

    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 300px;
    }

    .why-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .why-item {
        flex: 1;
        min-width: 250px;
    }

    .contact-grid {
        flex-direction: row;
        gap: 60px;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

    .resource-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-overlay h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}