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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a252f;
}

.intro-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-layout-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.services-highlight {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 24px 16px 24px;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 16px 24px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.insight-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.form-section {
    padding: 100px 60px;
    background-color: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 60px 30px 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 16px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

.btn-cookie-alt {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 80px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.cta-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.about-intro {
    padding: 80px 60px;
    background-color: #ffffff;
}

.expertise-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.expertise-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.values-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-content {
    padding: 60px 60px;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.info-item {
    margin-bottom: 36px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-map-placeholder {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 60px;
}

.additional-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.additional-info a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.additional-info a:hover {
    text-decoration: underline;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-details {
    text-align: left;
    margin-bottom: 36px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 36px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-next-steps li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 60px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .service-grid {
        gap: 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

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

    .expertise-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .intro-section,
    .services-highlight,
    .insight-section,
    .form-section,
    .cta-section {
        padding: 60px 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer {
        padding: 40px 30px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header h1 {
        font-size: 36px;
    }
}