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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-buttons button:hover {
    background: #229954;
}

.cookie-buttons button.reject {
    background: #7f8c8d;
}

.cookie-buttons button.reject:hover {
    background: #636e72;
}

.site-header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.ad-notice {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #ecf0f1;
    font-weight: 500;
}

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

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

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

.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 24px;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #34495e;
}

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

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #3498db;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.cta-secondary:hover {
    background: #3498db;
    color: white;
}

.intro-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.split-visual-left {
    display: flex;
    min-height: 500px;
}

.split-visual-right {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
}

.visual-side {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

.visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.content-side h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.content-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 12px 0;
    font-size: 17px;
    color: #34495e;
    border-bottom: 1px solid #ecf0f1;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #2c3e50;
    font-weight: 700;
}

.services-overview {
    padding: 80px 30px;
    background: #ffffff;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.price {
    padding: 0 24px 16px;
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
}

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

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

.form-section {
    padding: 80px 30px;
    background: #ecf0f1;
}

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

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.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;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.trust-section {
    padding: 80px 30px;
    background: white;
}

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

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.science-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.science-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.science-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

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

.science-section a:hover {
    text-decoration: underline;
}

.cta-final {
    padding: 100px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-final p {
    font-size: 19px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 30px 30px;
}

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

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-references ol {
    padding-left: 24px;
}

.footer-references ol li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.page-hero {
    padding: 100px 30px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}

.values-section {
    padding: 80px 30px;
    background: white;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

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

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

.process-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
}

.stats-section {
    padding: 80px 30px;
    background: #2c3e50;
    color: white;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 17px;
    color: #bdc3c7;
}

.cta-section {
    padding: 80px 30px;
    background: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-detail-section {
    padding: 80px 30px;
    background: white;
}

.service-detail-section.alt-layout {
    background: #f8f9fa;
}

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

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

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

.detail-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

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

.price-block {
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-amount {
    font-size: 36px;
    color: #27ae60;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-note {
    font-size: 13px;
    color: #95a5a6;
    font-style: italic;
}

.contact-content {
    padding: 80px 30px;
    background: white;
}

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

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

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

.map-placeholder {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #bdc3c7;
}

.map-note {
    margin-top: 12px;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
}

.faq-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
}

.thanks-section {
    padding: 100px 30px;
    background: white;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    font-weight: 700;
}

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

.thanks-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.selected-service {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.selected-service p {
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.urgent-note {
    margin-top: 50px;
    padding: 24px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.urgent-note p {
    font-size: 15px;
    color: #856404;
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 30px;
    background: white;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 24px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

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

.info-table td {
    padding: 12px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 16px;
    color: #34495e;
}

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

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

.cookies-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 700;
}

.cookies-table td {
    color: #34495e;
}

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

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

    .hero-visual {
        min-height: 400px;
    }

    .split-visual-left,
    .split-visual-right {
        flex-direction: column;
    }

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

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

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

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-lead {
        font-size: 17px;
    }

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

    .content-side {
        padding: 40px 30px;
    }

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

    .testimonials {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .stats-grid {
        gap: 40px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .next-steps {
        text-align: left;
    }

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

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .intro-section h2,
    .services-overview h2 {
        font-size: 28px;
    }

    .content-side h2 {
        font-size: 26px;
    }
}