 body {
            background-color: #f8f6f2; /* Fondo beige muy suave */
            font-family: 'Montserrat', sans-serif;
            color: #4a4a4a;
        }
        .invitation-card {
            background-color: #ffffff;
            border: 1px solid #e0d9cd;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .elegant-title {
            font-family: 'Great Vibes', cursive;
            color: #b8975e; /* Tono dorado/bronce */
            font-size: 3.5rem;
        }
        .section-title {
            font-family: 'Great Vibes', cursive;
            color: #b8975e;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .divider {
            border-top: 2px dashed #e0d9cd;
        }
        @media (min-width: 768px) {
            .divider-vertical {
                border-right: 2px dashed #e0d9cd;
                border-top: 0;
            }
        }
        .btn-custom {
            background-color: #b8975e;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background-color: #9e7f4c;
            color: white;
            transform: translateY(-2px);
        }