* {
    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;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px 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-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.split-left, .split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a252f;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image {
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.intro-section {
    padding: 100px 40px;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a252f;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.services-overview {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.section-header p {
    font-size: 20px;
    color: #6c757d;
}

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

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

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

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

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

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

.btn-select:active {
    transform: translateY(0);
}

.service-card.selected {
    border: 3px solid #3498db;
}

.contact-form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.contact-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #495057;
}

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

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

.btn-submit:active {
    transform: translateY(0);
}

.trust-section {
    padding: 100px 40px;
    background-color: #1a252f;
    color: #ffffff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step p {
    font-size: 16px;
    color: #adb5bd;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.disclaimer-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px 40px;
    margin: 0;
}

.disclaimer-notice p {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.about-hero {
    padding: 100px 40px;
    background-color: #1a252f;
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #adb5bd;
}

.about-content {
    padding: 100px 40px;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.about-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #e9ecef;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a252f;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
}

.services-page {
    padding: 100px 40px;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
}

.services-detail h1 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #e9ecef;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

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

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

.service-detail-content .price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

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

.service-detail-content ul {
    list-style: none;
    margin: 24px 0;
}

.service-detail-content ul li {
    font-size: 17px;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.contact-page {
    padding: 100px 40px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #1a252f;
}

.contact-info {
    margin: 60px 0;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 18px;
    color: #495057;
    line-height: 1.6;
}

.legal-page {
    padding: 100px 40px;
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

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

.thanks-content {
    max-width: 700px;
    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: 48px;
    color: #28a745;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-content .cta-primary {
    margin-top: 32px;
}

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

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps {
        flex-wrap: wrap;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

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

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

    .split-left {
        padding: 40px 20px;
    }
}