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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

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

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

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

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

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

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

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

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

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

.hero-image {
    flex: 1;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 24px;
    background-color: #fff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-section {
    padding: 80px 24px;
    background-color: var(--light-bg);
}

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

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

.content-column {
    flex: 1;
}

.content-column h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-column p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.image-column {
    flex: 1;
    background-color: #ddd;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

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

.services-showcase {
    padding: 80px 24px;
    background-color: #fff;
}

.services-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 320px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #ddd;
    overflow: hidden;
}

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

.service-content {
    padding: 24px;
}

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

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

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

.duration {
    font-size: 14px;
    color: #666;
}

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

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.btn-select.selected {
    background-color: var(--success-color);
}

.testimonials-section {
    padding: 80px 24px;
    background-color: var(--light-bg);
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.testimonial-block {
    background-color: #fff;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 16px;
    color: #444;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.form-section {
    padding: 80px 24px;
    background-color: #fff;
}

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--secondary-color);
}

.btn-submit {
    padding: 16px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 24px;
    background-color: #fef9e7;
    border-top: 1px solid #f4e4c1;
    border-bottom: 1px solid #f4e4c1;
}

.disclaimer-text {
    font-size: 14px;
    color: #7d6608;
    line-height: 1.6;
    text-align: center;
}

.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 24px 24px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 24px;
    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;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: scale(1.05);
}

.page-header {
    background-color: var(--light-bg);
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 18px;
    color: #666;
}

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

.philosophy-section {
    padding: 80px 24px;
    background-color: var(--light-bg);
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.philosophy-section > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
}

.philosophy-blocks {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.philosophy-item {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

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

.philosophy-item p {
    font-size: 16px;
    color: #555;
}

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.team-info {
    max-width: 800px;
    margin: 0 auto;
}

.team-info p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

.value-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: #555;
}

.cta-about {
    padding: 80px 24px;
    text-align: center;
    background-color: #fff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.services-detailed {
    padding: 60px 24px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-duration {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.service-guarantee {
    padding: 60px 24px;
    background-color: var(--light-bg);
}

.service-guarantee h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.service-guarantee p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-section {
    padding: 60px 24px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 32px;
}

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

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    background-color: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    height: 100%;
}

.map-box p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555;
}

.map-box img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.contact-cta {
    padding: 80px 24px;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.thanks-section {
    padding: 100px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.selected-service-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 16px;
}

.thanks-content > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background-color: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.next-steps {
    padding: 80px 24px;
    background-color: var(--light-bg);
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
    max-width: 340px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 15px;
    color: #555;
}

.legal-content {
    padding: 60px 24px;
}

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

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

    .hero-content {
        padding: 48px 24px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .nav-menu {
        gap: 16px;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

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

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

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