 
        /* ===== СБРОС И ПЕРЕМЕННЫЕ ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-bg: #faf7f2;    /* Теплый светлый фон */
            --card-bg: #ffffff;
            --text-dark: #2d3e4f;      /* Спокойный сине-серый */
            --text-soft: #5a6b7a;
            --accent: #a48b7c;          /* Мягкий коричнево-розовый */
            --accent-light: #dccfc7;
            --highlight: #7a9e7e;       /* Приглушенный зеленый (надежность) */
            --border-light: #e9e1d9;
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-dark);
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

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

        /* ===== ШАПКА ===== */
        .header {
            padding: 24px 0;
            background-color: transparent;
            position: relative;
        }

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

        .logo h2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .logo span {
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            color: var(--text-soft);
            display: block;
        }

        .contact-info {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-soft);
            font-size: 0.95rem;
        }

        .contact-item i {
            color: var(--accent);
            font-size: 1.2rem;
            width: 24px;
        }

        .contact-item a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 500;
        }

        .contact-item a:hover {
            color: var(--highlight);
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(164, 139, 124, 0.3);
            letter-spacing: 0.3px;
        }

        .btn:hover {
            background-color: #8f7566;
            box-shadow: 0 8px 18px rgba(164, 139, 124, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            box-shadow: inset 0 0 0 2px var(--accent);
            box-shadow: 0 0 0 2px var(--accent);
        }

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

        /* ===== HERO ===== */
        .hero {
            padding: 40px 0 60px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-highlight {
            color: var(--accent);
            font-style: italic;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-soft);
            margin-bottom: 32px;
            max-width: 90%;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-soft);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-image {
            background-color: var(--accent-light);
            border-radius: 40px;
            padding: 20px;
            height: 400px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" width="400" height="400"><rect width="400" height="400" fill="%23dccfc7" /><circle cx="200" cy="180" r="70" fill="%23a48b7c" opacity="0.6"/><path d="M130 280 Q200 350, 270 280" stroke="%23ffffff" stroke-width="8" fill="none" stroke-linecap="round"/><circle cx="160" cy="160" r="8" fill="%23ffffff"/><circle cx="240" cy="160" r="8" fill="%23ffffff"/></svg>');
            background-size: cover;
            background-position: center;
            box-shadow: var(--shadow);
        }

        /* ===== О СЕБЕ ===== */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-sub {
            text-align: center;
            color: var(--text-soft);
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 1.2rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-soft);
            font-size: 1.1rem;
        }

        .about-text strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .education-item {
            display: flex;
            gap: 16px;
            margin: 24px 0;
            align-items: flex-start;
        }

        .education-icon {
            background-color: var(--accent-light);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .education-content h4 {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .education-content p {
            color: var(--text-soft);
            font-size: 0.95rem;
        }

        .about-card {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }

        .about-card h3 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .samara-badge {
            display: inline-block;
            background-color: var(--highlight);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 24px;
            box-shadow: 0 4px 8px rgba(122, 158, 126, 0.3);
        }

        /* ===== УСЛУГИ ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .service-card {
            background-color: var(--card-bg);
            padding: 36px 24px;
            border-radius: 32px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid var(--border-light);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            background-color: var(--accent-light);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.2rem;
            color: var(--accent);
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

        .service-card p {
            color: var(--text-soft);
            margin-bottom: 24px;
        }

        .price-tag {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
            font-family: 'Playfair Display', serif;
        }

        .price-note {
            font-size: 0.85rem;
            color: var(--text-soft);
            display: block;
            margin-top: 8px;
        }

        /* ===== КОНТАКТЫ И ЗАПИСЬ ===== */
        .contact-section {
            background-color: var(--card-bg);
            border-radius: 60px;
            padding: 60px 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .contact-info-block h2 {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
        }

        .contact-detail-item i {
            font-size: 2rem;
            color: var(--accent);
            width: 48px;
        }

        .contact-detail-item a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .social-link {
            background-color: var(--accent-light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            transition: background-color 0.2s, color 0.2s;
        }

        .social-link:hover {
            background-color: var(--accent);
            color: white;
        }

        .appointment-form {
            background-color: var(--primary-bg);
            padding: 40px;
            border-radius: 40px;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-light);
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            background-color: white;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

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

        .map-placeholder {
            margin-top: 40px;
            background-color: var(--accent-light);
            border-radius: 30px;
            padding: 30px;
            text-align: center;
            color: var(--text-soft);
            font-weight: 300;
            border: 1px dashed var(--accent);
        }

        .map-placeholder i {
            font-size: 2rem;
            margin-bottom: 12px;
            color: var(--accent);
        }

        /* ===== ПОДВАЛ ===== */
        .footer {
            padding: 40px 0;
            text-align: center;
            color: var(--text-soft);
            border-top: 1px solid var(--border-light);
            margin-top: 40px;
        }

        /* ===== АДАПТИВНОСТЬ ===== */
        @media (max-width: 900px) {
            .hero-grid, .about-grid, .services-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

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

            .contact-info {
                width: 100%;
                justify-content: space-between;
            }

            .hero-image {
                height: 300px;
                order: -1;
            }
        }

        @media (max-width: 600px) {
            .contact-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }
    </style>