@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 30% 20%, var(--forest-green) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--burgundy-deep) 0%, transparent 50%);
            opacity: 0.05;
            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(--forest-green), var(--copper-bronze));
            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 10px,
                rgba(212, 175, 55, 0.1) 10px,
                rgba(212, 175, 55, 0.1) 20px
            );
        }

        .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(--copper-bronze), 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(--copper-bronze));
            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(--burgundy-deep);
            margin-bottom: 3rem;
            position: relative;
           
            backdrop-filter: blur(5px);
            border-radius: 15px;
        }


        .essential-notice {
            background: linear-gradient(135deg, var(--copper-bronze), var(--gold-antique));
            color: var(--charcoal-grey);
            padding: 2.5rem;
            border-left: 8px solid var(--forest-green);
            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(--copper-bronze);
            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, ol {
            margin: 1.5rem 0 1.5rem 3rem;
        }

        li {
            margin-bottom: 1rem;
            font-weight: 500;
            font-size: 1rem;
        }

        .license-section {
            background: var(--burgundy-deep);
            color: var(--cream-ivory);
            padding: 2.5rem;
            border: 4px solid var(--gold-antique);
            margin: 3rem 0;
            transform: perspective(600px) rotateY(-3deg);
            border-radius: 10px;
        }

        .pricing-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .price-item {
            background: var(--forest-green);
            color: var(--cream-ivory);
            padding: 2rem;
            border: 4px solid var(--gold-antique);
            text-align: center;
            transform: perspective(500px) rotateX(-8deg);
            transition: all 0.4s ease;
            border-radius: 10px;
        }

        .price-item:hover {
            transform: perspective(500px) rotateX(0deg) scale(1.05);
        }

        .price-item h4 {
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.3rem;
            font-weight: bold;
        }

        .price-amount {
            font-size: 2rem;
            font-weight: bold;
            color: var(--gold-antique);
        }

        .contact-section {
            background: var(--charcoal-grey);
            color: var(--cream-ivory);
            padding: 2.5rem;
            border: 4px solid var(--copper-bronze);
            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;
            }

            h2{
                font-size: 2em;
            }

            .content {
                padding: 2.5rem;
                transform: none;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }

            .pricing-showcase {
                grid-template-columns: 1fr;
            }
        }

