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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #6b4940;
            background-color: #fff;
        }

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

        /* Header */
        header {
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(107, 73, 64, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #6b4940;
            text-decoration: none;
            border: 2px solid red;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #6b4940;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #e8d2c7;
        }

        .cta-button {
            background: #6b4940;
            color: #fff;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #5a3d36;
            transform: translateY(-2px);
        }

        .cta-button.secondary {
            background: transparent;
            color: #6b4940;
            border: 2px solid #6b4940;
        }

        .cta-button.secondary:hover {
            background: #6b4940;
            color: #fff;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(107, 73, 64, 0.4), rgba(107, 73, 64, 0.4)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23e8d2c7" width="1200" height="800"/><circle fill="%236b4940" opacity="0.1" cx="300" cy="200" r="150"/><circle fill="%236b4940" opacity="0.1" cx="900" cy="600" r="200"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: normal;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Event Types Section */
        .section {
            padding: 80px 0;
        }

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

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 60px;
            color: #6b4940;
            opacity: 0.8;
        }

                .section-title2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #e8d2c7;
        }

        .section-subtitle2 {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 60px;
            color: #e8d2c7;
            opacity: 0.8;
        }

        /* Event Portfolio Combined Section */
        .event-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .event-portfolio-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(107, 73, 64, 0.1);
            transition: all 0.3s;
            cursor: pointer;
        }

        .event-portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(107, 73, 64, 0.2);
        }

        .event-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            color: #fff;
            font-weight: bold;
            font-size: 1.1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .wedding-bg {
            background: linear-gradient(135deg, #e8d2c7, #d4b8a8, #6b4940);
        }

        .corporate-bg {
            background: linear-gradient(135deg, #6b4940, #5a3d36, #3a251f);
        }

        .birthday-bg {
            background: linear-gradient(135deg, #e8d2c7, #f4e6dc, #e8d2c7);
        }

        .babyshower-bg {
            background: linear-gradient(135deg, #f0e6e0, #e8d2c7, #dcc5b5);
        }

        .holiday-bg {
            background: linear-gradient(135deg, #6b4940, #8b6355, #a17865);
        }

        .custom-bg {
            background: linear-gradient(135deg, #e8d2c7, #6b4940, #e8d2c7);
        }

        .placeholder-text {
            background: rgba(107, 73, 64, 0.8);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .event-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .event-overlay .event-icon {
            font-size: 1.5rem;
            margin: 0;
            width: auto;
            height: auto;
            background: none;
            color: #6b4940;
        }

        .event-content {
            padding: 30px;
        }

        .event-content h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #6b4940;
        }

        .event-content p {
            color: #6b4940;
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .event-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .event-features span {
            color: #6b4940;
            font-size: 0.9rem;
            opacity: 0.7;
            font-style: italic;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .service-item {
            text-align: center;
            padding: 30px;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: #6b4940;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: #fff;
        }

        .service-item h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #6b4940;
        }

        /* Contact Form */
        .contact-section {
            background: linear-gradient(135deg, #6b4940, #5a3d36);
            color: #fff;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

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

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 16px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .submit-button {
            background: #e8d2c7;
            color: #6b4940;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .submit-button:hover {
            background: #fff;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #6b4940;
            color: #e8d2c7;
            text-align: center;
            padding: 40px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }