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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-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: #1a1a2e;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    background-color: #533483;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3a2359;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.btn-outline {
    background-color: transparent;
    color: #533483;
    padding: 12px 28px;
    border: 2px solid #533483;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #533483;
    color: #ffffff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.services-preview {
    padding: 100px 20px;
    background-color: #fafafa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    min-height: 400px;
    position: relative;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #533483;
    margin: 25px 0;
}

.form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    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: #533483;
}

.trust-section {
    padding: 100px 20px;
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
}

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

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

.stat-number {
    font-size: 54px;
    font-weight: 700;
    color: #533483;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #cccccc;
}

.main-footer {
    background-color: #0f0f1e;
    color: #cccccc;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.page-header h1 {
    font-size: 48px;
    color: #1a1a2e;
    font-weight: 700;
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 35px;
    color: #333;
    font-weight: 600;
}

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

.content-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-content {
    flex: 1;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

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

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-message h1 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message p {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-message .btn-primary {
    margin-top: 30px;
}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .service-split,
    .service-split.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .section-title {
        font-size: 32px;
    }
}