        body {
            background: #4a1d1f;
            
            font-family: 'Cormorant Garamond', serif;
        }

        .content-card {
            width: 100%;
            max-width: 900px;
            
            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;
        }

        
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #e0d5b1;
            background-color: #fffdf6;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: #4a1d1f;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #b7892b;
            box-shadow: 0 0 0 3px rgba(183, 137, 43, 0.2);
        }

        .submit-btn {
            background-color: #8c2c2e;
            color: #ffefc1;
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #6d2224;
            transform: translateY(-2px);
        }