        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rubik', sans-serif;
        }
        
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            background-color: #f05d8d;
            padding: 5px 0;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }
        
        .header-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .logo {
            height: 40px;
            width: auto;
        }
        
        .header-tagline {
            color: white;
            font-size: 14px;
            margin-top: 8px;
            font-weight: 500;
        }
        
        /* ===== Hero ===== */
        .hero { 
            position: relative; 
            overflow: hidden; 
            padding: 40px 0;
        }
        /* decorative gradient removed per feedback */
        .hero::before { content: none; }
        .hero-grid { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 18px; 
            align-items: center; 
            margin-top: 20px; 
            margin-bottom: 20px;
        }
        .hero-media { 
            border-radius: 16px; 
            overflow: hidden; 
        }
        .hero-media img {
            width: 100%;
            height: auto;
            display: block;
        }
        .eyebrow { 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            font-weight: 700; 
            font-size: 12px; 
            text-transform: uppercase; 
            letter-spacing: .12em; 
            color: #d94a7c; 
            background: #fff0f5; 
            padding: 6px 10px; 
            border-radius: 999px; 
        }
        .hero h1 { 
            margin: 10px 0 8px; 
            font-size: 28px; 
            line-height: 1.2; 
        }
        .hero .sub { 
            color: #555; 
            margin-bottom: 14px; 
        }
        .hero-cta { 
            display: flex; 
            gap: 10px; 
            flex-wrap: wrap; 
            margin-top: 8px; 
        }
        .btn-primary {
            display: inline-block;
            background-color: #e94b7e;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        .btn-primary:hover {
            background-color: #d13a6a;
        }
        .btn-outline {
            display: inline-block;
            background-color: transparent;
            color: #e94b7e;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            font-size: 14px;
            border: 2px solid #e94b7e;
        }
        .btn-outline:hover {
            background-color: #fef0f5;
        }
        
        @media (min-width: 768px) {
          .hero-grid { 
            grid-template-columns: 1.1fr 1fr; 
            gap: 24px; 
          }
          .hero h1 { 
            font-size: 40px; 
          }
        }
 
        @media (min-width: 1024px) {
          .hero h1 { 
            font-size: 48px; 
          }
        }
        
        /* Combined info section */
        .event-description {
            margin-bottom: 40px;
        }
        
        .section-title {
            text-align: left;
            font-size: 30px;
            font-weight: 700;
            line-height: 25px;
            margin-bottom: 35px;
            color: #333;
        }
        
        .combined-content {
            border-radius: 8px;
            padding: 30px;
            border: 1px solid #eee;
        }
        
        .info-row {
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
            gap: 15px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-right: 0;
        }
        
        .info-icon {
            width: 20px;
            height: 20px;
            color: #f05d8d;
            margin-right: 12px;
            flex-shrink: 0;
            font-size: 16px;
            text-align: center;
            font-weight: 400;
            margin-top: 2px;
        }
        
        .info-content {
            flex: 1;
        }
        
        .info-content h3 {
            display: inline;
            font-size: 15px;
            color: #333;
            font-weight: 600;
        }
        
        .info-content p {
            display: inline;
            color: #666;
            font-size: 15px;
        }
        
        .info-note {
            font-size: 13px;
            color: #888;
            margin-top: 5px;
            display: block;
            font-style: italic;
        }
        
        .description-text p {
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 15px;
        }
        
        .description-text ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .description-text ul li {
            margin-bottom: 8px;
            font-size: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .list-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            flex-shrink: 0;
            fill: #f05f8f;
        }
        
        .signature {
            padding: 20px;
            border-radius: 10px;
            background-color: rgba(255, 238, 248, 0.9);
            max-width: 400px;
            margin-top: 30px;
            text-align: center;
            font-weight: 500;
        }
        
        .signature-cta {
            margin-top: 20px;
            text-align: center;
        }
        
        .signature-cta p {
            margin-bottom: 15px;
            font-style: italic;
            color: #666;
        }
        
        /* Photo gallery section */
        .photo-gallery {
            margin: 40px 0;
        }
        
        .gallery-title {
            text-align: left;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
        }
        
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
        }
        
        /* FAQ section */
        .faq { 
            padding: 60px 0 40px; 
        }
        .faq h2 {
            text-align: left;
            font-size: 30px;
            font-weight: 700;
            line-height: 25px;
            margin-bottom: 35px;
            color: #333;
        }
        .faq-list { 
            display: grid; 
            gap: 12px; 
        }
        .faq-item { 
            display: grid; 
            grid-template-columns: 40px 1fr; 
            gap: 12px; 
            background: #fff; 
            border: 1px solid #f1f1f3; 
            border-left: 4px solid #f05f8f; 
            border-radius: 12px; 
            padding: 14px; 
            box-shadow: 0 6px 18px rgba(0,0,0,0.03); 
        }
        .faq-item h3 { 
            margin: 0 0 6px; 
            font-size: 16px; 
        }
        .faq-item .faq-icon { 
            width: 40px; 
            height: 40px; 
            border-radius: 10px; 
            background: #fff0f5; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
        .muted {
            color: #666;
            margin: 0;
        }
        
        /* About section */
        .about {
            padding: 40px 0;
            margin-bottom: 40px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            max-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        .about-list {
            margin-top: 20px;
        }
        
        .about-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        /* Footer */
        footer {
            background-color: #f9f9f9;
            color: #333;
            padding: 30px 0;
            font-size: 14px;
            border-top: 1px solid #eee;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .footer-section p {
            line-height: 1.5;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-logo {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            width: auto;
            filter: brightness(0) saturate(100%) invert(47%) sepia(70%) saturate(500%) hue-rotate(300deg) brightness(95%) contrast(90%);
        }
        
        .footer-slogan {
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
            color: #f05d8d;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 13px;
            color: #888;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .info-row {
                flex-direction: column;
                gap: 10px;
            }
            
            .section-title, .gallery-title, .faq h2 {
                text-align: center;
                font-size: 26px;
            }
            
            .info-item {
                margin-right: 0;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .signature {
                max-width: 100%;
            }
            
            .faq-item {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .faq-item .faq-icon {
                margin: 0 auto;
            }
        }