

        /* ===== TERMS AND CONDITIONS SECTION ===== */
        .terms-section {
            padding: 6rem 5%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .terms-header h1 {
            font-family: var(--serif);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .terms-header p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            color: var(--text-light);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .terms-content {
            background: var(--warm-dark);
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .terms-content h3 {
            font-family: var(--serif);
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            color: var(--beige);
            margin: 2rem 0 1rem;
            position: relative;
        }

        .terms-content h3::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        }

        .terms-content p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            color: var(--text-light);
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        /* Buttons */
        .terms-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 2px;
            font-family: var(--sans-serif);
            font-weight: 500;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-agree {
            background: var(--gold);
            color: var(--espresso);
        }

        .btn-agree:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(196, 168, 111, 0.3);
        }

        .btn-reject {
            border: 1px solid var(--gold);
            color: var(--gold);
            background: transparent;
        }

        .btn-reject:hover {
            background: rgba(196, 168, 111, 0.1);
        }

        /* Decorative Elements */
        .terms-ornament {
            position: absolute;
            width: 100px;
            height: 100px;
            opacity: 0.1;
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 0;
        }

        

        /* ===== RESPONSIVE ADJUSTMENTS ===== */
        @media (max-width: 768px) {
            .terms-section {
                padding: 4rem 3%;
            }

            .terms-header h1 {
                font-size: 2.5rem;
            }

            .terms-content {
                padding: 1.5rem;
            }

            .terms-cta {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 85%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .terms-section {
                padding: 3rem 2%;
            }

            .terms-header h1 {
                font-size: 2rem;
            }

            .terms-content h3 {
                font-size: 1.4rem;
            }

            .terms-content p {
                font-size: 0.9rem;
            }

            .terms-ornament {
                width: 80px;
                height: 80px;
            }
        }

        /* Motion sensitivity preference */
        @media (prefers-reduced-motion) {
            .btn-agree:hover,
            .btn-reject:hover {
                transform: none;
                box-shadow: none;
            }
        }