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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --white: #ffffff;
    --gray: #6c757d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--white);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.main-header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--gray);
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--light-bg);
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
}

.intro-section {
    padding: 100px 0;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image, .split-text {
    flex: 1;
}

.split-image {
    background: var(--border-color);
}

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
}

.split-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.split-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.split-text li {
    margin-bottom: 10px;
}

.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 240px;
    background: var(--border-color);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 14px;
    color: var(--gray);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1a252f;
}

.form-section {
    padding: 100px 0;
}

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

.benefits-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.split-form {
    flex: 1;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 15px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--white);
}

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

.testimonial {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    opacity: 0.8;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

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

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

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 20px;
}

.page-hero {
    padding: 80px 0 60px;
    background: var(--light-bg);
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 18px;
    color: var(--gray);
    margin-top: 15px;
}

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

.mission-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mission-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

.team-section {
    padding: 80px 0;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-top: 40px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.response-time {
    margin-top: 40px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 4px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray);
}

.thanks-info {
    margin: 30px 0;
}

.selected-service {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 4px;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #1a252f;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

.last-updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

    .menu-toggle {
        display: flex;
    }

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

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .philosophy-grid {
        flex-direction: column;
    }

    .philosophy-item {
        flex: 1 1 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}