        .containers {

            margin: 100px auto;
            padding: 40px 20px;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px solid #e5e5e5;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .page-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        /* Content Sections */
        .content-section {
         
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 1.75rem;
       
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: capitalize;
        }

        .subsection-title {
            font-size: 1.25rem;
      
            margin: 25px 0 15px;
            font-weight: 600;
        }

        /* Lists */
        .content-list {
            list-style: none;
            padding: 0;
        }

        .content-list li {
            padding: 12px 0 12px 30px;
            position: relative;
            color: #555;
            line-height: 1.8;
        }

        .content-list li::before {
            content: "•";
            position: absolute;
            left: 10px;
            color: #3498db;
            font-size: 1.5rem;
            line-height: 1.4;
        }

        /* Important Notice */
        .important-notice {
            /* background: #fff3cd; */
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 4px;
        }

        .important-notice strong {
            /* color: #856404; */
            display: block;
            margin-bottom: 10px;
        }

        /* Info Box */
        .info-box {
          
            border-left: 4px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 4px;
        }

        .info-box h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .info-box p {
            color: #555;
            margin: 5px 0;
        }

        .info-box a {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .info-box a:hover {
            text-decoration: underline;
        }

        /* Highlight Box */
        .highlight-box {
          
            border: 1px solid #dee2e6;
            padding: 20px;
            margin: 20px 0;
            border-radius: 4px;
        }

        /* Footer */
        footer {
          
            padding: 40px 20px 30px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .payment-icon {
            width: 60px;
            height: 40px;
         
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .payment-icon svg {
            width: 50px;
            height: 30px;
        }

        .footer-links {
            margin: 20px 0;
        }

        .footer-links a {
            /* color: #ecf0f1; */
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links a:hover {
            color: #3498db;
        }

        .copyright {
            color: #95a5a6;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .content-section {
                padding: 25px 20px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .content-list li {
                padding-left: 25px;
                font-size: 0.95rem;
            }

            .footer-links a {
                display: block;
                margin: 10px 0;
            }
        }