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

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

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

.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: #1a73e8;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

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

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

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

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 36px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1557b0;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    background: #dfe3e8;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.services-showcase {
    padding: 100px 40px;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #f1f3f5;
}

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

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0 24px 28px;
}

.form-section-split {
    display: flex;
    align-items: stretch;
}

.form-content {
    flex: 1.2;
    padding: 80px 60px;
    background: #f8f9fa;
}

.form-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-content > p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.form-image {
    flex: 0.8;
    background: #dee2e6;
    overflow: hidden;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: #1a73e8;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1557b0;
}

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #b8c5d0;
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #b8c5d0;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    padding: 24px 40px;
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.btn-accept {
    background: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1557b0;
}

.btn-reject {
    background: #e9ecef;
    color: #495057;
}

.btn-reject:hover {
    background: #dee2e6;
}

.cookie-actions a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

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

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

.page-header p {
    font-size: 20px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-section h2 {
    font-size: 32px;
    margin: 48px 0 20px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin: 36px 0 16px;
    color: #2c3e50;
}

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

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.content-section li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 52px;
    color: #1a73e8;
    margin-bottom: 24px;
}

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

.thanks-container .btn-home {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    margin-top: 30px;
    transition: background 0.3s;
}

.thanks-container .btn-home:hover {
    background: #1557b0;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.contact-info-block strong {
    color: #2c3e50;
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .form-section-split {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

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

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

    .nav-container {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .services-grid {
        gap: 20px;
    }

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

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

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