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

        body {
            font-family: 'Playfair Display', 'Times New Roman', serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
        }

        .container {
            display: flex;
            min-height: 100vh;
        }

        /* Left side - Photo carousel */
        .photo-section {
            flex: 1;
            position: relative;
            background: linear-gradient(135deg, #c3e7f5 0%, #cfebf7 100%);
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100vh;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .main-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .date-info {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .location-info {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .nav-dot.active {
            background: white;
        }

        /* Right side - Content */
        .content-section {
            flex: 1;
            height: 100vh;
            overflow-y: auto;
            background: linear-gradient(80deg, #dee5e7 0%, #f2f9fb 20%, #ffffff 40%, #f5fafb 60%, #d6e8ee 80%, #dbe5e7 100%);
            background-size: 400% 400%;
            animation: gradientShift 12s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .content-container {
            padding: 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .section {
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
            padding: 2rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid rgba(195, 231, 245, 0.3);
            box-shadow: 0 4px 20px rgba(195, 231, 245, 0.15);
        }

        .section:hover {
            box-shadow: 0 8px 30px rgba(195, 231, 245, 0.25);
            transform: translateY(-2px);
            border-color: rgba(195, 231, 245, 0.4);
        }

        .section h2 {
            color: #4a7c95;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            font-weight: 400;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #c3e7f5, #cfebf7, #c3e7f5);
            border-radius: 2px;
        }

        .section h3 {
            color: #5a8ba3;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section p {
            margin-bottom: 1rem;
            color: #546e79;
            line-height: 1.7;
        }

        .highlight {
            background: linear-gradient(135deg, #f8fcfd 0%, #f2f9fb 100%);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
            border: 1px solid #e1f3f8;
            border-left: 4px solid #c3e7f5;
        }

        .schedule-item {
            background: linear-gradient(135deg, #f8fcfd 0%, #f2f9fb 100%);
            padding: 1.2rem;
            margin: 1rem 0;
            border-radius: 12px;
            border-left: 4px solid #c3e7f5;
            transition: all 0.3s ease;
        }

        .schedule-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(195, 231, 245, 0.2);
        }

        .schedule-time {
            font-weight: 600;
            color: #4a7c95;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .map-container {
            margin: 1rem 0;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .registry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .registry-item {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .registry-item:hover {
            transform: translateY(-5px);
        }

        .registry-item h4 {
            color: #4169E1;
            margin-bottom: 0.5rem;
        }

        .embed-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #f0f0f0;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .embed-container.form-container {
            height: auto;
            min-height: 1000px;
            padding-bottom: 0;
            overflow: visible;
        }

        .embed-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #666;
        }

        .qa-item {
            background: linear-gradient(135deg, #f8fcfd 0%, #f2f9fb 100%);
            padding: 1.2rem;
            margin: 1rem 0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(195, 231, 245, 0.2);
        }

        .qa-item:hover {
            background: linear-gradient(135deg, #f2f9fb 0%, #edf6f9 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(195, 231, 245, 0.2);
        }

        .qa-question {
            font-weight: 600;
            color: #4a7c95;
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }

        .qa-answer {
            color: #546e79;
            display: none;
            margin-top: 0.5rem;
            line-height: 1.6;
        }

        .qa-answer.active {
            display: block;
        }

        .photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .photo-placeholder {
            aspect-ratio: 1;
            background: #e9ecef;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .photo-section {
                height: 50vh;
            }

            .content-section {
                height: auto;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .content-container {
                padding: 1rem;
            }

            .section {
                padding: 1.5rem;
            }

            .registry-grid {
                grid-template-columns: 1fr;
            }

            .embed-container {
                padding-bottom: 75%;
                min-height: 300px;
            }

            .embed-container.form-container {
                min-height: 800px;
                height: auto;
                padding-bottom: 0;
                overflow: visible;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }

            .date-info {
                font-size: 1.2rem;
            }

            .location-info {
                font-size: 1rem;
            }

            .section h2 {
                font-size: 1.5rem;
            }
        }
