:root {
            /* Background color with transparency */
            --primary: rgba(238, 219, 212, 0.85);
            --secondary: #D4B5B0;
            --accent: #8C6A5D;
            --dark: #3A2C28;
            --light: rgba(238, 219, 212, 0.85);
            --text: #333333;
            --text-light: #777777;
            --highlight: #C89B9B;
            --buy-color: #A0522D;
            --rent-color: #D2B48C;
            --buy-border: #C89B9B;
            --rent-border: #D4B5B0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: rgba(238, 219, 212, 0.85);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--dark);
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-family: 'Libre Baskerville', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--dark);
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo i {
            color: var(--secondary);
            margin-right: 8px;
            font-size: 24px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a.active {
            color: var(--secondary);
        }
        
        nav ul li a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .social-icons-header {
            display: flex;
            gap: 15px;
            margin-left: 20px;
        }
        
        .social-icon-header {
            color: var(--dark);
            font-size: 18px;
            transition: color 0.3s;
        }
        
        .social-icon-header:hover {
            color: var(--secondary);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Main Content */
        main {
            margin-top: 80px;
            min-height: calc(100vh - 200px);
        }
        
        .page {
            display: none;
            padding: 40px 0;
            animation: fadeIn 0.5s ease;
        }
        
        .page.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(58, 44, 40, 0.65), rgba(58, 44, 40, 0.65)), url('./images/2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 60px;
            min-height: 80vh;
            display: flex;
            align-items: flex-end; /* Выравнивание по нижнему краю */
        }

        .hero-content {
            width: 100%;
            padding-bottom: 60px; /* Отступ от нижнего края */
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-light {
            background-color: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }
        
        .btn-light:hover {
            background-color: white;
            color: var(--dark);
        }
        
        /* Section Styling */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        /* About Page */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px; /* Фиксированная высота для видео */
            position: relative;
        }
        
        .about-img video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature {
            text-align: center;
            padding: 25px 15px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-10px);
        }
        
        .feature i {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .feature h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            margin-top: 80px;
        }
        
        .testimonials-container {
            background-color: white;
            border-radius: 10px;
            padding: 50px 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: rgba(238, 219, 212, 0.15);
            border-top: 4px solid var(--secondary);
            padding: 30px;
            border-radius: 8px;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 25px;
            font-style: italic;
            flex-grow: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: 600;
            font-size: 18px;
        }
        
        .testimonial-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .testimonial-info p {
            font-size: 14px;
            color: var(--text-light);
        }
        
        /* Services Page */
        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: var(--text);
            font-size: 18px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 250px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-content p {
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .service-tag {
            display: inline-block;
            background-color: rgba(238, 219, 212, 0.85);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .price {
            font-weight: 700;
            color: var(--accent);
            font-size: 18px;
        }
        
        /* Services Details Section */
        .services-details {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }
        
        .services-categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .services-row {
            display: contents;
        }
        
        .services-category {
            background-color: rgba(238, 219, 212, 0.1);
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(212, 181, 176, 0.2);
        }
        
        .services-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-color: var(--secondary);
        }
        
        .services-category h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--dark);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            text-align: center;
        }
        
        .service-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .service-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(212, 181, 176, 0.3);
        }
        
        .service-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            font-weight: 500;
            color: var(--text);
            font-size: 15px;
        }
        
        .service-price {
            font-weight: 600;
            color: var(--accent);
            font-size: 15px;
        }
        
        .service-notes {
            background-color: rgba(238, 219, 212, 0.2);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            font-size: 14px;
            color: var(--text-light);
            border-left: 4px solid var(--secondary);
        }
        
        .service-notes p {
            margin-bottom: 10px;
        }
        
        .service-notes p:last-child {
            margin-bottom: 0;
        }
        
        /* Occasionwear Page */
        .dresses-hero {
            background: linear-gradient(rgba(238, 219, 212, 0.95), rgba(238, 219, 212, 0.95)), url('https://images.unsplash.com/photo-1598300042247-d088f8ab3a91?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1331&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 40px;
            border-radius: 10px;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .dresses-hero h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .dresses-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text);
        }
        
        .dresses-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--text);
            font-size: 18px;
        }
        
        .dresses-options {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
        }
        
        .option-btn {
            padding: 12px 30px;
            background-color: white;
            border: 2px solid var(--secondary);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 16px;
            color: var(--dark);
        }
        
        .option-btn.active, .option-btn:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .dresses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .dress-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .dress-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .dress-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }
        
        .dress-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dress-card:hover .dress-img img {
            transform: scale(1.05);
        }
        
        .dress-info {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .dress-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .dress-details {
            color: var(--text);
            margin-bottom: 15px;
            font-size: 14px;
            flex-grow: 1;
        }
        
        .dress-options {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .buy-option, .rent-option {
            flex: 1;
            padding: 12px 5px;
            border-radius: 5px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .buy-option {
            background-color: rgba(160, 82, 45, 0.1);
            color: var(--buy-color);
            border: 2px solid var(--buy-border);
        }
        
        .buy-option:hover {
            background-color: var(--buy-color);
            color: white;
        }
        
        .rent-option {
            background-color: rgba(210, 180, 140, 0.1);
            color: var(--rent-color);
            border: 2px solid var(--rent-border);
        }
        
        .rent-option:hover {
            background-color: var(--rent-color);
            color: white;
        }
        
        /* Blog Page */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .blog-post {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
            height: 220px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-post:hover .blog-img img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            margin-bottom: 15px;
            color: var(--text);
            font-size: 14px;
        }
        
        .blog-date {
            margin-right: 20px;
        }
        
        .blog-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-content p {
            color: var(--text);
            margin-bottom: 20px;
        }
        
        /* Contact Page */
        .contact-container {
            display: flex;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(238, 219, 212, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--dark);
            font-size: 20px;
        }
        
        .contact-details h4 {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: var(--text);
        }
        
        .hours {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }
        
        .hours h4 {
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .hours ul {
            list-style: none;
        }
        
        .hours ul li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .hours ul li:last-child {
            border-bottom: none;
        }
        
        /* Google Maps Section */
        .map-container {
            margin-top: 40px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 1200px;
        }
        
        .map-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: var(--dark);
        }
        
        .map-frame {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: 'Libre Baskerville', serif;
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-logo i {
            color: var(--secondary);
            margin-right: 8px;
            font-size: 24px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .footer-links h4, .footer-newsletter h4 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .footer-links h4::after, .footer-newsletter h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.9);
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .newsletter-form input:focus {
            outline: none;
        }
        
        .newsletter-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content, .contact-container {
                flex-direction: column;
            }
            
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .social-icons-header {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .dresses-options {
                flex-direction: column;
                align-items: center;
            }
            
            .option-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .dress-options {
                flex-direction: column;
                gap: 8px;
            }
            
            .services-details {
                padding: 25px;
            }
            
            .testimonials-container {
                padding: 30px 20px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .services-categories-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .blog-grid, .dresses-grid, .services-grid {
                grid-template-columns: 1fr;
            }
            
            .dress-img {
                height: 300px;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .btn-light {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .services-details {
                padding: 20px;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .services-category {
                padding: 20px;
            }
        }