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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.intro-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-section {
    padding: 100px 40px;
    background: #fff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.service-image {
    flex: 0 0 200px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 30px 30px 30px 0;
}

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 32px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.select-service-btn.selected {
    background: #27ae60;
}

.form-section-split {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.form-left {
    flex: 1;
    color: #fff;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.form-right {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 40px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 40px;
    background: #fff;
}

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

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

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

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

.footer-col p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
}

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

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

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

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

.about-content {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.contact-page {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

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

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

.contact-item p {
    font-size: 18px;
    color: #555;
}

.legal-page {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-page .update-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

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

.thanks-content {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thanks-content .btn-home:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

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

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

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

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

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

    .service-image {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

    .services-split-grid {
        gap: 20px;
    }

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