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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
}

.main-nav {
    background-color: #1a202c;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #60a5fa;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 800;
}

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

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

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

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.cta-button.secondary {
    background-color: #64748b;
    margin-left: 16px;
}

.cta-button.secondary:hover {
    background-color: #475569;
}

.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 32px;
}

.vp-left {
    flex: 1;
    overflow: hidden;
}

.vp-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-right {
    flex: 1;
    padding: 60px;
}

.vp-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.vp-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
}

.stat-label {
    font-size: 15px;
    color: #64748b;
    margin-top: 8px;
}

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

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 400px;
    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-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    margin: 20px 0;
}

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

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

.form-section {
    background-color: #f8fafc;
    padding: 80px 32px;
}

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

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

.form-container > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer-section p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 32px 20px;
}

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

.footer-col {
    flex: 1 1 220px;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

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

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

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

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

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

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

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1d4ed8;
}

.cookie-btn.reject {
    background-color: #64748b;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #475569;
}

.page-hero {
    background-color: #1a202c;
    color: #ffffff;
    text-align: center;
    padding: 80px 32px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

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

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 32px;
}

.story-block {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.values-section {
    background-color: #f8fafc;
    padding: 80px 32px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

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

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

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

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

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

.service-detail-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-left p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin: 24px 0;
}

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

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

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 32px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2563eb;
    font-weight: 700;
}

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

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

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

.contact-additional {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 32px;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
    font-weight: 700;
}

.expectations-grid {
    display: flex;
    gap: 40px;
}

.expectation-item {
    flex: 1;
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 32px;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

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

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 800;
}

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

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

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookies-table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1a202c;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5568;
}

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

    .value-proposition {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

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

    .story-block,
    .story-block.reverse,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

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

    .cta-button.secondary {
        margin-left: 0;
        margin-top: 8px;
    }
}