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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #95a5a6;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #2c3e50;
    --text-light: #7f8c8d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
}

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

header {
    background: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
    background: var(--light);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23bdc3c7" width="800" height="600"/><path fill="%2395a5a6" d="M0 0h300v600H0z"/><rect fill="%23ecf0f1" x="320" y="100" width="400" height="300"/><rect fill="%232c3e50" x="340" y="120" width="150" height="200"/><rect fill="%232c3e50" x="510" y="120" width="150" height="200"/><circle fill="%23e67e22" cx="415" cy="220" r="15"/><circle fill="%23e67e22" cx="585" cy="220" r="15"/></svg>') center/cover;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d35400;
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 70px 60px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

.feature-list li:before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 12px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.services-grid h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border: 1px solid #e0e0e0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-section {
    background: var(--light);
    padding: 80px 20px;
}

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

.form-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d35400;
}

.info-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 50px;
}

.info-left {
    flex: 1.5;
}

.info-right {
    flex: 1;
    background: var(--light);
    padding: 40px;
    align-self: flex-start;
}

.info-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
}

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

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
}

.info-item span {
    color: var(--text-light);
    font-size: 15px;
}

footer {
    background: var(--dark);
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #2c3e50;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.accept-cookies {
    background: var(--secondary);
    color: white;
}

.reject-cookies {
    background: #95a5a6;
    color: white;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--dark);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.about-intro {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.about-intro h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-intro p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.values-section {
    background: var(--light);
    padding: 80px 20px;
}

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

.values-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--dark);
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .hero-split,
    .split-section,
    .info-split {
        flex-direction: column;
    }

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

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

    .split-content {
        padding: 50px 30px;
    }

    .split-image {
        min-height: 350px;
    }

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

    .split-content h2 {
        font-size: 30px;
    }

    .service-cards {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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