        body {
            background: #4a1d1f;
            
            font-family: 'Cormorant Garamond', serif;
        }

        .content-card {
            width: 100%;
            max-width: 1200px;
            margin: 1rem auto 2rem auto;
            background: linear-gradient(145deg, #fff8e1, #ffefc1);
        
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #b7892b;
            padding: 40px;
        }

        .details-font {
            font-family: 'Playfair Display', serif;
            color: #8c2c2e;
        }

        .main-font {
            font-family: 'Cormorant Garamond', serif;
            color: #4a1d1f;
        }

        .divider {
            height: 1px;
            width: 60%;
            margin: 24px auto;
            background: linear-gradient(to right, transparent, #b7892b, transparent);
        }

        
        .site-header {
            padding: 1rem 2rem;
            background-color: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-link {
            color: #ffefc1;
            text-decoration: none;
            margin: 0 20px;
            font-size: 1.1rem;
            letter-spacing: 1px;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff;
            border-bottom-color: #b7892b;
        }

        
        .coming-soon-box {
            border: 2px dashed #b7892b;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.2);
        }