        .zephyr-matrimonial-viewport {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .aurora-floating-ornaments {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .celestial-bloom-sphere {
            position: absolute;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, #ff6b6b, #ee5a24);
            border-radius: 50%;
            opacity: 0.3;
            animation: ethereal-drift 6s ease-in-out infinite;
        }

        .celestial-bloom-sphere:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .celestial-bloom-sphere:nth-child(2) {
            top: 20%;
            right: 8%;
            animation-delay: 2s;
        }

        .celestial-bloom-sphere:nth-child(3) {
            bottom: 15%;
            left: 3%;
            animation-delay: 4s;
        }

        .celestial-bloom-sphere:nth-child(4) {
            bottom: 25%;
            right: 15%;
            animation-delay: 1s;
        }

        @keyframes ethereal-drift {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .phoenix-matrimonial-sanctuary {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 60px 50px;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 10;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .sovereign-crown-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .imperial-dynasty-headline {
            font-size: 2.8rem;
            color: #2d3436;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .crimson-heritage-accent {
            color: #e17055;
            font-weight: 600;
        }

        .noble-legacy-tagline {
            font-size: 1.1rem;
            color: #636e72;
            margin-bottom: 30px;
        }

        .platinum-narrative-block {
            margin-bottom: 30px;
        }

        .aristocratic-prose-element {
            font-size: 1.05rem;
            color: #2d3436;
            text-align: justify;
            margin-bottom: 20px;
        }

        .royal-emphasis-marker {
            font-weight: 600;
            color: #e17055;
        }

        .sapphire-service-constellation {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .diamond-prestige-capsule {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            transform: translateY(0);
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
            border: #e17055 3px solid;
        }

        .diamond-prestige-capsule:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(116, 185, 255, 0.4);
        }

        .emerald-service-designation {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .pearl-service-narrative {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .golden-invitation-sanctuary {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid rgba(225, 112, 85, 0.2);
        }

        .ruby-destiny-catalyst {
            background: linear-gradient(135deg, #e17055, #d63031);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(225, 112, 85, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ruby-destiny-catalyst:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(225, 112, 85, 0.4);
        }

        .platinum-achievement-gallery {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .crystal-milestone-beacon {
            text-align: center;
            margin: 10px;
        }

        .titanium-metric-display {
            font-size: 2.2rem;
            font-weight: 700;
            color: #e17055;
            display: block;
        }

        .bronze-metric-descriptor {
            font-size: 0.9rem;
            color: #636e72;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
       
        @media (max-width: 768px) {
            .zephyr-matrimonial-viewport {
                padding: 15px;
            }
            
            .phoenix-matrimonial-sanctuary {
                padding: 40px 30px;
            }
            
            .imperial-dynasty-headline {
                font-size: 2.2rem;
            }
            
            .sapphire-service-constellation {
                grid-template-columns: 1fr;
            }
            
            .platinum-achievement-gallery {
                flex-direction: column;
                align-items: center;
            }
        }

        .jade-messenger-orb {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .jade-messenger-orb:hover {
            background-color: #20ba5a;
            transform: scale(1.1);
        }
