* {
    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: #ffffff;
}

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

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e4e8;
    padding: 8px 0;
    text-align: center;
}

.ad-disclosure span {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-header {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #2c5282;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.intro-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-image {
    flex: 1;
    background: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

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

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

.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a2332;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

.service-image {
    height: 200px;
    background: #e8eef3;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a2332;
    font-weight: 600;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin: 0 20px 20px;
    display: block;
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1e3a5f;
}

.service-card.selected {
    border: 3px solid #2c5282;
}

.contact-form-section {
    padding: 100px 0;
}

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

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a2332;
    font-weight: 700;
}

.form-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selected-service-display {
    padding: 16px;
    background: #e8f4f8;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
    margin-bottom: 8px;
}

.selected-service-display strong {
    color: #1a2332;
}

.selected-service-display span {
    color: #2c5282;
    font-weight: 600;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e1e4e8;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 16px 36px;
    background: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

.form-image {
    flex: 1;
    background: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

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

.trust-section {
    padding: 80px 0;
    background: #1a2332;
    color: #ffffff;
}

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

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
}

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

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    background: #ffffff;
}

.main-footer {
    background: #0f1722;
    color: #d1d5db;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #2c5282;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e3a5f;
}

.cookie-reject {
    background: transparent;
    color: #d1d5db;
    border: 2px solid #4a5568;
}

.cookie-reject:hover {
    background: #2d3748;
}

.cookie-learn {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-learn:hover {
    color: #5dade2;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content .selected-service-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    border-left: 4px solid #2c5282;
}

.thanks-content .selected-service-info strong {
    color: #2c5282;
    font-size: 20px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #2c5282;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #1e3a5f;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content,
    .intro-split,
    .form-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

@media (max-width: 640px) {
    .service-card {
        width: 100%;
    }

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

    .services-preview h2 {
        font-size: 32px;
    }
}