  /* Main Contents - Responsive Padding for Header */
        .contents {
            padding-top: 70px;
            padding-bottom: 20px;
            min-height: calc(100vh - 70px);
            margin: 0 auto;
        }

        /* Terms Content - Matching Card Styles */
        .terms-content {
            padding: 40px;
            animation: slideIn 0.5s ease-out;
            color: var(--text-color-1);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .terms-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-color-1);
            margin-bottom: 25px;
            text-align: center;
            background: var(--app-theme-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .terms-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-color-1);
            margin-top: 30px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 4px solid var(--orange-gradient);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .terms-content h3 i {
            font-size: 1.2rem;
            color: var(--orange-text);
        }

        .terms-content p {
            font-size: 1rem;
            margin-bottom: 15px;
            line-height: 1.7;
            color: var(--text-color-2);
            text-align: justify;
        }

        .terms-content ul {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        .terms-content li {
            font-size: 1rem;
            margin-bottom: 8px;
            line-height: 1.6;
            color: var(--text-color-2);
            position: relative;
            padding-left: 5px;
        }

        .terms-content li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--green-text);
            position: absolute;
            left: -25px;
            top: 0;
        }

        .terms-content a {
            color: var(--link-color);
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .terms-content a:hover {
            color: var(--orange-text);
        }

        .terms-content .create-account-button {
            display: inline-block;
            margin: 20px auto;
            padding: 12px 24px;
            background: var(--button-theme-gradient);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .terms-content .create-account-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--cards-shadow);
        }

        /* Responsive Design - Matching Login & Payment Pages */
        @media (max-width: 768px) {
            .contents {
                padding-top: 65px;
            }

            .terms-content {
                padding: 30px 25px;
            }

            .terms-content h2 {
                font-size: 1.6rem;
            }

            .terms-content h3 {
                font-size: 1.3rem;
                margin-top: 25px;
            }

            .terms-content p,
            .terms-content li {
                font-size: 0.95rem;
            }

            .terms-content ul {
                margin-left: 20px;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 48px;
            }

            .header .icons i {
                height: 2.2rem;
                width: 2.2rem;
                line-height: 2.0rem;
                font-size: 1.25rem;
            }

            .contents {
                padding-top: 60px;
            }

            .terms-content {
                padding: 25px 20px;
            }

            .terms-content h2 {
                font-size: 1.4rem;
            }

            .terms-content h3 {
                font-size: 1.2rem;
                margin-top: 20px;
            }

            .terms-content p,
            .terms-content li {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .terms-content ul {
                margin-left: 15px;
            }

            .terms-content li::before {
                left: -20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 320px) {
            .header {
                height: 44px;
            }

            .contents {
                padding-top: 55px;
            }

            .terms-content {
                padding: 20px 15px;
            }

            .terms-content h2 {
                font-size: 1.3rem;
            }

            .terms-content h3 {
                font-size: 1.1rem;
            }

            .terms-content p,
            .terms-content li {
                font-size: 0.85rem;
            }
        }