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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

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

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

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

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

.hero-text h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #1a1a1a;
}

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

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

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

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

.intro-image {
    flex: 1;
    background-color: #2c3e50;
}

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

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

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

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    min-height: 350px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin-top: auto;
}

.service-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

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

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #f0f0f0;
}

.cta-form-wrapper {
    flex: 1;
    padding: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.service-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

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

.benefits-image {
    flex: 1;
    background-color: #34495e;
}

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

.benefits-content {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
}

.benefit-item {
    margin-bottom: 32px;
}

.benefit-item h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 16px;
    color: #b0bec5;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-left p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

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

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #64b5f6;
}

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

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

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

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

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

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

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

.about-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.contact-hero {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #f0f0f0;
}

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #2c3e50;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .benefits-split,
    .about-split,
    .contact-split,
    .service-card {
        flex-direction: column;
    }

    .service-card.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .nav {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

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