        /* Importing custom fonts */
        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

        :root {
            /* Colors */
            --glitzaroo-white: #ffffff;
            --glitzaroo-black: #000000;
            --glitzaroo-primary: #CF0F47;
            --glitzaroo-secondary: #FF0B55;
            --glitzaroo-light: #FFDEDE;
            
            /* Spacing */
            --glitzaroo-space-xs: 0.5rem;
            --glitzaroo-space-sm: 1rem;
            --glitzaroo-space-md: 2rem;
            --glitzaroo-space-lg: 3rem;
            --glitzaroo-space-xl: 5rem;
            
            /* Typography */
            --glitzaroo-font-heading: 'Cormorant Garamond', serif;
            --glitzaroo-font-body: 'Montserrat', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--glitzaroo-font-body);
            line-height: 1.6;
            color: var(--glitzaroo-black);
            background-color: var(--glitzaroo-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--glitzaroo-font-heading);
            line-height: 1.2;
            margin-bottom: var(--glitzaroo-space-sm);
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.8rem;
            font-weight: 600;
            position: relative;
            margin-bottom: var(--glitzaroo-space-md);
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--glitzaroo-primary);
        }

        h3 {
            font-size: 2.2rem;
            font-weight: 600;
        }

        h4 {
            font-size: 1.8rem;
            font-weight: 500;
        }

        p {
            margin-bottom: var(--glitzaroo-space-sm);
            font-size: 1.1rem;
        }

        a {
            color: var(--glitzaroo-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--glitzaroo-secondary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .glitzaroo-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--glitzaroo-space-sm) 0;
        }

        .glitzaroo-section {
            padding: var(--glitzaroo-space-lg) 0;
        }

        .glitzaroo-section:nth-child(even) {
            background-color: #f9f9f9;
        }

        .glitzaroo-centered {
            text-align: center;
        }

        .glitzaroo-centered h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .glitzaroo-btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--glitzaroo-primary);
            color: var(--glitzaroo-white);
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .glitzaroo-btn:hover {
            background-color: var(--glitzaroo-secondary);
            color: var(--glitzaroo-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Header & Navigation */
        .glitzaroo-header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--glitzaroo-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .glitzaroo-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .glitzaroo-logo {
            display: flex;
            align-items: center;
            font-family: var(--glitzaroo-font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--glitzaroo-black);
        }

        .glitzaroo-logo span {
            color: var(--glitzaroo-primary);
        }

        .glitzaroo-logo-img {
            height: 50px;
            margin-right: var(--glitzaroo-space-xs);
        }

        .glitzaroo-nav {
            display: flex;
            align-items: center;
        }

        .glitzaroo-nav-list {
            display: flex;
            list-style: none;
        }

        .glitzaroo-nav-item {
            margin-left: var(--glitzaroo-space-md);
        }

        .glitzaroo-nav-link {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--glitzaroo-black);
            padding: 0.5rem;
            position: relative;
        }

        .glitzaroo-nav-link:hover {
            color: var(--glitzaroo-primary);
        }

        .glitzaroo-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--glitzaroo-primary);
            transition: width 0.3s ease;
        }

        .glitzaroo-nav-link:hover::after {
            width: 100%;
        }

        .glitzaroo-hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
        }

        .glitzaroo-hamburger span {
            height: 3px;
            width: 100%;
            background-color: var(--glitzaroo-black);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .glitzaroo-hero {
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(../img/about.jpg) center/cover no-repeat;
            color: var(--glitzaroo-white);
            text-align: center;
            padding-top: 80px;
        }

        .glitzaroo-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: var(--glitzaroo-space-md);
        }

        .glitzaroo-hero h1 {
            font-size: 4rem;
            margin-bottom: var(--glitzaroo-space-md);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease-out;
        }

        .glitzaroo-hero p {
            font-size: 1.5rem;
            margin-bottom: var(--glitzaroo-space-md);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeIn 1.2s ease-out;
        }

        .glitzaroo-hero-btns {
            display: flex;
            justify-content: center;
            gap: var(--glitzaroo-space-sm);
            animation: fadeInUp 1.4s ease-out;
        }

        /* About Section */
        .glitzaroo-about-content {
            display: flex;
            align-items: center;
            gap: var(--glitzaroo-space-lg);
        }

        .glitzaroo-about-text {
            flex: 1;
        }

        .glitzaroo-about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .glitzaroo-about-image:hover {
            transform: translateY(-10px);
        }

        /* Services Section */
        .glitzaroo-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--glitzaroo-space-md);
            margin-top: var(--glitzaroo-space-md);
        }

        .glitzaroo-service-card {
            background-color: var(--glitzaroo-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .glitzaroo-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .glitzaroo-service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .glitzaroo-service-content {
            padding: var(--glitzaroo-space-sm);
        }

        /* Products Section */
        .glitzaroo-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--glitzaroo-space-md);
            margin-top: var(--glitzaroo-space-md);
        }

        .glitzaroo-price-card {
            background-color: var(--glitzaroo-white);
            border-radius: 10px;
            padding: var(--glitzaroo-space-md);
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .glitzaroo-price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .glitzaroo-price-popular {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--glitzaroo-primary);
            color: var(--glitzaroo-white);
            padding: 5px 10px;
            font-size: 0.8rem;
            transform: translateX(30%) translateY(0%) rotate(45deg);
            width: 150px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .glitzaroo-price-title {
            color: var(--glitzaroo-primary);
            margin-bottom: var(--glitzaroo-space-sm);
        }

        .glitzaroo-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: var(--glitzaroo-space-sm);
            color: var(--glitzaroo-black);
        }

        .glitzaroo-price-period {
            font-size: 1rem;
            color: #777;
        }

        .glitzaroo-price-features {
            list-style: none;
            margin: var(--glitzaroo-space-md) 0;
            text-align: left;
        }

        .glitzaroo-price-feature {
            margin-bottom: var(--glitzaroo-space-xs);
            position: relative;
            padding-left: 25px;
        }

        .glitzaroo-price-feature::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--glitzaroo-primary);
            font-weight: bold;
        }

        /* Testimonials Section */
        .glitzaroo-testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }

        .glitzaroo-testimonial-slide {
            background-color: var(--glitzaroo-white);
            padding: var(--glitzaroo-space-md);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 var(--glitzaroo-space-sm);
            text-align: center;
        }

        .glitzaroo-testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto var(--glitzaroo-space-sm);
            object-fit: cover;
            border: 3px solid var(--glitzaroo-primary);
        }

        .glitzaroo-testimonial-quote {
            font-style: italic;
            margin-bottom: var(--glitzaroo-space-sm);
        }

        .glitzaroo-testimonial-author {
            font-weight: 600;
            color: var(--glitzaroo-primary);
        }

        .glitzaroo-testimonial-position {
            font-size: 0.9rem;
            color: #777;
        }

        /* Events Section */
        .glitzaroo-events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--glitzaroo-space-md);
        }

        .glitzaroo-event-card {
            background-color: var(--glitzaroo-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .glitzaroo-event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .glitzaroo-event-img-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .glitzaroo-event-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .glitzaroo-event-card:hover .glitzaroo-event-img {
            transform: scale(1.1);
        }

        .glitzaroo-event-date {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--glitzaroo-primary);
            color: var(--glitzaroo-white);
            padding: 5px 10px;
            font-weight: 600;
            border-radius: 4px;
            font-size: 0.9rem;
        }

        .glitzaroo-event-content {
            padding: var(--glitzaroo-space-md);
        }

        .glitzaroo-event-time {
            display: flex;
            align-items: center;
            margin-bottom: var(--glitzaroo-space-xs);
            color: #777;
        }

        .glitzaroo-event-location {
            display: flex;
            align-items: center;
            margin-bottom: var(--glitzaroo-space-sm);
            color: #777;
        }

        /* Contact Section */
        .glitzaroo-contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--glitzaroo-space-lg);
        }

        .glitzaroo-contact-info {
            display: flex;
            flex-direction: column;
        }

        .glitzaroo-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: var(--glitzaroo-space-md);
        }

        .glitzaroo-contact-icon {
            margin-right: var(--glitzaroo-space-sm);
            width: 24px;
            height: 24px;
            fill: var(--glitzaroo-primary);
        }

        .glitzaroo-contact-text {
            flex: 1;
        }

        .glitzaroo-contact-form {
            background-color: var(--glitzaroo-white);
            padding: var(--glitzaroo-space-md);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .glitzaroo-form-group {
            margin-bottom: var(--glitzaroo-space-sm);
        }

        .glitzaroo-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .glitzaroo-input,
        .glitzaroo-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: var(--glitzaroo-font-body);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .glitzaroo-input:focus,
        .glitzaroo-textarea:focus {
            border-color: var(--glitzaroo-primary);
            outline: none;
        }

        .glitzaroo-textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Gallery Section */
        .glitzaroo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
            margin-top: var(--glitzaroo-space-md);
        }

        .glitzaroo-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }

        .glitzaroo-gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .glitzaroo-gallery-item:hover .glitzaroo-gallery-img {
            transform: scale(1.1);
        }

        .glitzaroo-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glitzaroo-gallery-item:hover .glitzaroo-gallery-overlay {
            opacity: 1;
        }

        .glitzaroo-gallery-icon {
            width: 40px;
            height: 40px;
            fill: var(--glitzaroo-white);
        }

        .glitzaroo-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .glitzaroo-lightbox.active {
            opacity: 1;
            pointer-events: auto;
        }

        .glitzaroo-lightbox-img {
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .glitzaroo-lightbox.active .glitzaroo-lightbox-img {
            transform: scale(1);
        }

        .glitzaroo-lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            fill: var(--glitzaroo-white);
            cursor: pointer;
        }

        /* Success Page */
        .glitzaroo-success {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            padding: var(--glitzaroo-space-md);
        }
        .glitzaroo-table-container {
    margin-bottom: 30px;
}
.glitzaroo-policy-content ul {
    margin-bottom: 20px;
}

        .glitzaroo-success-icon {
            width: 100px;
            height: 100px;
            fill: var(--glitzaroo-primary);
            margin-bottom: var(--glitzaroo-space-md);
            animation: scaleIn 0.5s ease-out;
        }

        /* Footer */
        .glitzaroo-footer {
            background-color: #222;
            color: var(--glitzaroo-white);
            padding: var(--glitzaroo-space-lg) 0 var(--glitzaroo-space-md);
        }

        .glitzaroo-footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--glitzaroo-space-md);
        }

        .glitzaroo-footer-logo {
            font-family: var(--glitzaroo-font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--glitzaroo-white);
            margin-bottom: var(--glitzaroo-space-sm);
        }

        .glitzaroo-footer-logo span {
            color: var(--glitzaroo-primary);
        }

        .glitzaroo-footer-about {
            margin-bottom: var(--glitzaroo-space-md);
        }

        .glitzaroo-footer-heading {
            font-size: 1.5rem;
            margin-bottom: var(--glitzaroo-space-sm);
            color: var(--glitzaroo-white);
            position: relative;
            padding-bottom: 10px;
        }

        .glitzaroo-footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--glitzaroo-primary);
        }

        .glitzaroo-footer-links {
            list-style: none;
        }

        .glitzaroo-footer-link {
            margin-bottom: 8px;
        }

        .glitzaroo-footer-link a {
            color: #bbb;
            transition: color 0.3s ease;
        }

        .glitzaroo-footer-link a:hover {
            color: var(--glitzaroo-primary);
        }

        .glitzaroo-footer-social {
            display: flex;
            gap: 15px;
            margin-top: var(--glitzaroo-space-sm);
        }

        .glitzaroo-social-icon {
            width: 36px;
            height: 36px;
            fill: #bbb;
            transition: fill 0.3s ease;
        }

        .glitzaroo-social-icon:hover {
            fill: var(--glitzaroo-primary);
        }

        .glitzaroo-footer-bottom {
            text-align: center;
            padding-top: var(--glitzaroo-space-md);
            margin-top: var(--glitzaroo-space-md);
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #bbb;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        /* Responsive styles */
        @media screen and (max-width: 991px) {
            h1 {
                font-size: 3.5rem;
            }
            
            h2 {
                font-size: 2.8rem;
            }
            
            h3 {
                font-size: 2.2rem;
            }
            
            p {
                font-size: 1.2rem;
                margin-bottom: var(--glitzaroo-space-md);
            }
            
            .glitzaroo-container {
                width: 85%;
                padding: var(--glitzaroo-space-xs) 0;
            }
            
            .glitzaroo-section {
                padding: var(--glitzaroo-space-xl) 0;
            }
            
            .glitzaroo-btn {
                padding: 15px 32px;
                font-size: 1.2rem;
            }
            
            .glitzaroo-hamburger {
                display: flex;
            }
            
            .glitzaroo-nav-list {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                height: 0;
                flex-direction: column;
                background-color: var(--glitzaroo-white);
                overflow: hidden;
                transition: height 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .glitzaroo-nav-list.active {
                height: 300px;
                padding: var(--glitzaroo-space-md) 0;
                top: 62px;
            }
            
            .glitzaroo-nav-item {
                margin: 10px 0;
                text-align: center;
            }
            
            .glitzaroo-nav-link {
                display: block;
                padding: 10px;
            }
            
            .glitzaroo-about-content {
                flex-direction: column;
            }
            
            .glitzaroo-contact-container {
                grid-template-columns: 1fr;
            }
            
            .glitzaroo-service-img {
                height: 250px;
            }
            
            .glitzaroo-gallery-img {
                height: 300px;
            }
        }

        @media screen and (max-width: 768px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.4rem;
            }
            
            h3 {
                font-size: 2rem;
            }
            
            .glitzaroo-hero {
                min-height: 500px;
            }
            
            .glitzaroo-hero h1 {
                font-size: 3.5rem;
            }
            
            .glitzaroo-hero p {
                font-size: 1.3rem;
            }
            
            .glitzaroo-hero-btns {
                flex-direction: column;
                gap: var(--glitzaroo-space-sm);
            }
            
            .glitzaroo-footer-container {
                grid-template-columns: 1fr;
            }
            section.glitzaroo-section.glitzaroo-policy ul {
    padding-left: 16px;
}
        }

        @media screen and (max-width: 576px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .glitzaroo-container {
                width: 90%;
            }
            
            .glitzaroo-hero h1 {
                font-size: 3rem;
            }
            
            .glitzaroo-hero p {
                font-size: 1.2rem;
            }
            .glitzaroo-section {
        padding: var(--glitzaroo-space-lg) 0;
    }
    .glitzaroo-logo-img {
    height: 45px;
}
.glitzaroo-event-content {
    padding: var(--glitzaroo-space-sm);
}
.glitzaroo-contact-container {
    gap: 0;
}
.glitzaroo-contact-form {
    padding: var(--glitzaroo-space-sm);
}
        }

        @media screen and (max-width: 360px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            h3 {
                font-size: 1.8rem;
            }
            
            p {
                font-size: 1.1rem;
            }
            
            .glitzaroo-hero h1 {
                font-size: 2.5rem;
            }
            
            .glitzaroo-hero p {
                font-size: 1.1rem;
            }
            
            .glitzaroo-btn {
                padding: 12px 24px;
                font-size: 1.1rem;
            }
            
            .glitzaroo-service-card,
            .glitzaroo-price-card,
            .glitzaroo-event-card {
                padding: var(--glitzaroo-space-sm);
            }
            
            .glitzaroo-gallery-img {
                height: 250px;
            }
            .glitzaroo-logo {
    font-size: 1.6rem;
 }
        }
  