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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2b6cb0;
}

.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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

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

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

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 100px 24px;
    background: #f7fafc;
}

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

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

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a365d;
    line-height: 1.3;
}

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

.services-overview {
    padding: 100px 24px;
    background: #ffffff;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 480px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.select-service.selected {
    background: #48bb78;
}

.form-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.split-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 20px;
}

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

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

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

.trust-points {
    display: flex;
    gap: 48px;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #90cdf4;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.disclaimer-section {
    padding: 60px 24px;
    background: #fff5f5;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #742a2a;
    line-height: 1.8;
}

.main-footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 60px 24px 24px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-column p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #4a5568;
    text-align: center;
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    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: 24px;
}

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

.cookie-content a {
    color: #90cdf4;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #38a169;
}

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

.cookie-btn.reject:hover {
    background: #4a5568;
}

.about-hero {
    padding: 100px 24px;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    color: #ffffff;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    padding: 80px 24px;
}

.about-story {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a365d;
}

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

.services-list {
    padding: 80px 24px;
    background: #f7fafc;
}

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

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a365d;
}

.services-intro p {
    font-size: 18px;
    color: #718096;
}

.contact-page {
    padding: 80px 24px;
}

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

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a365d;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.info-block {
    flex: 1;
    padding: 40px;
    background: #f7fafc;
    border-radius: 12px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a365d;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.thanks-cta {
    margin-top: 40px;
}

.legal-page {
    padding: 80px 24px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a365d;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

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

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

.legal-content ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

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

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

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

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

    .trust-points {
        flex-direction: column;
        gap: 32px;
    }

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

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

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