.zephyr_matrimony_container {
            background: linear-gradient(135deg, #f8f6f0 0%, #ebe5d8 100%);
            min-height: 100vh;
            font-family: 'Georgia', serif;
            padding: 40px 20px;
        }

        .stellar_main_header {
            text-align: center;
            margin-bottom: 50px;
        }

        .stellar_main_header h1 {
            font-size: 2.8rem;
            color: #8b4513;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .crimson_highlight {
            color: #dc143c;
            font-weight: 600;
        }

        .azure_content_grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .emerald_feature_card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .emerald_feature_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .amber_icon_container {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

        .ruby_couples_icon {
            background: linear-gradient(45deg, #dc143c, #ff6b6b);
            color: white;
        }

        .golden_star_icon {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #8b4513;
        }

        .emerald_globe_icon {
            background: linear-gradient(45deg, #228b22, #32cd32);
            color: white;
        }

        .jade_briefcase_icon {
            background: linear-gradient(45deg, #2e8b57, #3cb371);
            color: white;
        }

        .sapphire_title {
            font-size: 1.4rem;
            color: #8b4513;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .pearl_description {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .platinum_central_content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .diamond_agency_title {
            font-size: 1.3rem;
            color: #8b4513;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .obsidian_emphasis {
            font-weight: 700;
            color: #2c1810;
        }

        .crimson_agency_name {
            color: #dc143c;
            font-weight: 700;
        }

        .topaz_service_desc {
            color: #4a4a4a;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .bronze_clan_list {
            color: #8b4513;
            font-weight: 600;
            font-style: italic;
        }

        .violet_location_list {
            color: #663399;
            font-weight: 600;
        }

        .onyx_professional_list {
            color: #2f4f4f;
            font-weight: 600;
        }

        @media (max-width: 1200px) {
            .azure_content_grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .stellar_main_header h1 {
                font-size: 2.2rem;
            }
            
            .platinum_central_content {
                padding: 35px;
            }
        }
        .amber_icon_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


        @media (max-width: 768px) {
            .zephyr_matrimony_container {
                padding: 20px 15px;
            }
            
            .stellar_main_header h1 {
                font-size: 1.8rem;
            }
            
            .emerald_feature_card {
                padding: 25px;
            }
            
            .platinum_central_content {
                padding: 25px;
            }
        }