@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Bebas+Neue&display=swap');
        
       
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --burgundy-deep: #722f37;
            --gold-antique: #d4af37;
            --cream-ivory: #f5f5dc;
            --forest-green: #355e3b;
            --copper-bronze: #b87333;
            --charcoal-grey: #36454f;
            --pearl-white: #faf0e6;
        }

        body {
            font-family: 'Times New Roman', serif;
            background: var(--pearl-white);
            color: var(--charcoal-grey);
            line-height: 1.7;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(114, 47, 55, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--burgundy-deep), var(--forest-green));
            color: var(--cream-ivory);
            border-bottom: 6px solid var(--gold-antique);
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 8px,
                rgba(212, 175, 55, 0.1) 8px,
                rgba(212, 175, 55, 0.1) 16px
            );
        }

        .header h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-variant: small-caps;
        }

        .header p {
            font-size: 1.4rem;
            color: var(--gold-antique);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 2;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 3rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(45deg, var(--burgundy-deep), var(--forest-green));
            color: var(--cream-ivory);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.4s ease;
            border: 3px solid var(--gold-antique);
            border-radius: 25px;
            transform: perspective(500px) rotateX(-5deg);
        }

        .back-link:hover {
            background: linear-gradient(45deg, var(--forest-green), var(--burgundy-deep));
            transform: perspective(500px) rotateX(0deg) scale(1.05);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .content {
            background: var(--cream-ivory);
            padding: 4rem;
            border: 4px solid var(--copper-bronze);
            margin-bottom: 3rem;
            position: relative;
            
            backdrop-filter: blur(5px);
            border-radius: 15px;
        }

       

        .important-notice {
            background: linear-gradient(135deg, var(--gold-antique), var(--copper-bronze));
            color: var(--charcoal-grey);
            padding: 2.5rem;
            border-left: 8px solid var(--burgundy-deep);
            margin: 3rem 0;
            transform: perspective(600px) rotateY(-3deg);
            font-weight: bold;
            border-radius: 10px;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 3rem 0 2rem 0;
            letter-spacing: 1px;
            border-bottom: 4px solid var(--forest-green);
            padding-bottom: 1rem;
            text-transform: uppercase;
            color: var(--burgundy-deep);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-variant: small-caps;
        }

        h3 {
            font-size: 1.6rem;
            font-weight: bold;
            margin: 2.5rem 0 1rem 0;
            color: var(--forest-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            font-weight: 400;
        }

        ul {
            margin: 1.5rem 0 1.5rem 3rem;
        }

        li {
            margin-bottom: 1rem;
            font-weight: 500;
            font-size: 1rem;
        }

        .contact-section {
            background: var(--forest-green);
            color: var(--cream-ivory);
            padding: 2.5rem;
            border: 4px solid var(--gold-antique);
            margin: 3rem 0;
            transform: perspective(600px) rotateY(3deg);
            border-radius: 10px;
        }

        .contact-section h3 {
            margin-bottom: 1.5rem;
            color: var(--gold-antique);
        }

        .date-section {
            text-align: center;
            font-style: italic;
            color: var(--burgundy-deep);
            border-top: 4px solid var(--copper-bronze);
            padding-top: 3rem;
            margin-top: 4rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            font-weight: bold;
        }

        footer {
            background: linear-gradient(135deg, var(--burgundy-deep), var(--charcoal-grey));
            color: var(--cream-ivory);
            padding: 3rem;
            text-align: center;
            margin-top: 4rem;
            border-top: 6px solid var(--gold-antique);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--cream-ivory);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: var(--gold-antique);
            transform: scale(1.1);
            text-shadow: 0 0 10px var(--gold-antique);
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .header h1 {
                font-size: 2.5rem;
            }

            .content {
                padding: 2.5rem;
                transform: none;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }

            h2{
                font-size: 2em;
            }
        }

