
        .hero-section {
            background: linear-gradient(135deg, #FFF8F8, #FFE4E1);
            padding: 120px 0 80px;
            min-height: 100vh;
        }
        
        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #8B0000;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .hero-subtitle {
            font-size: 24px;
            color: #DC143C;
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        .hero-image {
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            max-width: 100%;
            height: auto;
        }
        
        .product-description {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .price-tag {
            font-size: 36px;
            font-weight: 700;
            color: #8B0000;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .benefits-section {
            background: #fff;
            padding: 80px 0;
        }
        
        .benefit-item {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #8B0000;
            margin-bottom: 15px;
        }
        
        .reviews-section {
            background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
            padding: 80px 0;
        }
        
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #666;
        }
        
        .review-author {
            font-weight: 600;
            color: #8B0000;
        }
        
        .gallery-section {
            padding: 80px 0;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #8B0000;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .contact-section {
            background: #fff;
            padding: 80px 0;
        }
        
        .contact-info {
            background: linear-gradient(135deg, #8B0000, #DC143C);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .contact-info h4 {
            color: #FFD700;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: #FFD700;
            margin-right: 10px;
            width: 20px;
        }
    