* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #2196f3;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #1976d2;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2196f3;
}

.ad-disclosure {
    font-size: 12px;
    color: #757575;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2196f3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2196f3;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #2196f3;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2196f3;
    color: #ffffff;
}

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

.split-content,
.split-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content-reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

.section-header-center p {
    font-size: 18px;
    color: #546e7a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a2332;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    padding: 0 24px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2196f3;
    padding: 0 24px;
    margin-bottom: 20px;
}

.btn-service-select {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1a2332;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Form Section */
.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 24px;
}

.selected-service-display {
    padding: 20px;
    background-color: #e3f2fd;
    border-radius: 6px;
    margin-top: 24px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 8px;
    color: #1a2332;
}

.selected-service-display div {
    font-size: 16px;
    color: #1976d2;
    font-weight: 600;
}

.form-container {
    flex: 1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 15px;
    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: #2196f3;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #2196f3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1976d2;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
    background-color: #fff8e1;
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #ffa726;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #e65100;
}

.disclaimer-box p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a2332;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
}

/* About Page Styles */
.about-intro {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2332;
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2332;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

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

.team-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-subtitle-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #546e7a;
}

.team-image-container {
    border-radius: 8px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background-color: #1a2332;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e0e0e0;
}

/* Services Detail Page */
.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2332;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: 700;
}

.comparison-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.comparison-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2332;
}

.comparison-card p {
    font-size: 16px;
    color: #546e7a;
}

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

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2196f3;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.process-step p {
    font-size: 16px;
    color: #546e7a;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
}

.contact-info p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a2332;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    margin: 0;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2332;
}

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

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2332;
}

.faq-item p {
    font-size: 16px;
    color: #546e7a;
}

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

.thanks-box {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4caf50;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
}

.selected-service-confirmation {
    background-color: #e3f2fd;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service-confirmation h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a2332;
}

.selected-service-confirmation p {
    font-size: 20px;
    color: #1976d2;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2332;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a2332;
}

.legal-updated {
    font-size: 14px;
    color: #757575;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2332;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a2332;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #2196f3;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1976d2;
}

/* Footer */
.main-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: #b0bec5;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #37474f;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0bec5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        height: 400px;
    }

    .split-content,
    .split-content-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .form-split {
        flex-direction: column;
    }

    .service-detail-split,
    .service-detail-reverse {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-text-content h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .comparison-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 40px 24px;
    }

    .hero-text-content h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .thanks-box {
        padding: 40px 24px;
    }

    .disclaimer-box {
        padding: 24px;
    }
}
