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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    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-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie:hover {
    background: #f0f0f0;
}

.btn-cookie.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #ffffff;
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 13px;
    color: #666;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.nav a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #0066cc;
}

.hero-minimal {
    padding: 120px 0 100px;
    background: #fafafa;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    font-weight: 300;
}

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

.intro-image-wrapper {
    margin-bottom: 60px;
    background-color: #f0f0f0;
}

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

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.large-text {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 400;
    color: #2a2a2a;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-title-center {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 600;
    color: #1a1a1a;
}

.section-title-left {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.service-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-content {
    flex: 1;
    padding: 20px 0;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin: 28px 0;
}

.btn-select {
    padding: 16px 36px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #0052a3;
}

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

.form-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select {
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    background: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 18px 48px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2a2a2a;
}

.testimonials-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #aaaaaa;
}

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

.philosophy-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #1a1a1a;
}

.philosophy-section .large-text {
    margin-bottom: 28px;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.philosophy-image-wrapper {
    margin-top: 60px;
    background-color: #f0f0f0;
}

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

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

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 32px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaaaaa;
}

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

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

.footer-col ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

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

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 56px;
    margin-bottom: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 16px;
}

.thanks-page .selected-service {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    margin: 32px 0;
}

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 32px;
    color: #4a4a4a;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .nav {
        gap: 20px;
        flex-direction: column;
    }

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

    .section-title-center,
    .section-title-left {
        font-size: 36px;
    }

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