 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section 1 - Premium Service */
        .premium-service {
            background: linear-gradient(135deg, #faf7f2 0%, #f0e8dc 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .premium-service::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23b8860b" opacity="0.1"/><circle cx="60" cy="40" r="1" fill="%23daa520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .service-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .service-image {
            flex: 1;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-text {
            flex: 1;
            padding-left: 20px;
        }

        .service-title {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }

        .service-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
            border-radius: 2px;
        }

        .service-description {
            font-size: 1.1rem;
            color: #5a5a5a;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: justify;
        }

        .service-btn {
            background: linear-gradient(135deg, #d4af37, #b8860b);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        .service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
        }

        /* Section 2 - Elite Matchmaking */
        .elite-matchmaking {
            background: linear-gradient(135deg, #fff8f0 0%, #f5e6d3 100%);
            padding: 80px 0;
            position: relative;
        }

        .elite-matchmaking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
        }

        .matchmaking-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .matchmaking-text {
            flex: 1;
            padding-right: 20px;
        }

        .matchmaking-image {
            flex: 1;
            position: relative;
        }

        .matchmaking-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
            transition: transform 0.3s ease;
        }

        .matchmaking-image:hover img {
            transform: scale(1.05);
        }

        .matchmaking-title {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }

        .matchmaking-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #b8860b, #d4af37);
            border-radius: 2px;
        }

        /* Section 3 - Verified Profiles */
        .verified-profiles {
            background: linear-gradient(135deg, #f9f4ed 0%, #ede0d0 100%);
            padding: 80px 0;
            position: relative;
        }

        .verified-profiles::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.05) 50%, transparent 51%);
        }

        .profiles-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .profiles-image {
            flex: 1;
            position: relative;
        }

        .profiles-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .profiles-image:hover img {
            transform: scale(1.05);
        }

        .profiles-text {
            flex: 1;
            padding-left: 20px;
        }

        .profiles-title {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }

        .profiles-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
            border-radius: 2px;
        }

        /* Section 4 - Success Stories */
        .success-stories {
            background: linear-gradient(135deg, #fdf9f3 0%, #f2e5d5 100%);
            padding: 80px 0;
            position: relative;
        }

        .success-stories::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(212, 175, 55, 0.03) 10px,
                rgba(212, 175, 55, 0.03) 20px
            );
        }

        .stories-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .stories-text {
            flex: 1;
            padding-right: 20px;
        }

        .stories-image {
            flex: 1;
            position: relative;
        }

        .stories-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
            transition: transform 0.3s ease;
        }

        .stories-image:hover img {
            transform: scale(1.05);
        }

        .stories-title {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }

        .stories-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #b8860b, #d4af37);
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .service-content,
            .matchmaking-content,
            .profiles-content,
            .stories-content {
                flex-direction: column;
                gap: 40px;
            }

            .service-text,
            .matchmaking-text,
            .profiles-text,
            .stories-text {
                padding: 0;
            }

            .service-image img,
            .matchmaking-image img,
            .profiles-image img,
            .stories-image img {
                height: 300px;
            }

            .service-title,
            .matchmaking-title,
            .profiles-title,
            .stories-title {
                font-size: 2rem;
            }

            .service-description {
                font-size: 1rem;
            }

            .premium-service,
            .elite-matchmaking,
            .verified-profiles,
            .success-stories {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .service-title,
            .matchmaking-title,
            .profiles-title,
            .stories-title {
                font-size: 1.8rem;
            }

            .service-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-content,
        .matchmaking-content,
        .profiles-content,
        .stories-content {
            animation: fadeInUp 0.8s ease-out;
        }
    