

        /* Privacy Policy Section */
        .privacy-policy {
            background-color: #fff8e1;
            text-align: left;
        }

        .privacy-policy h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .privacy-policy h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
        }

        .privacy-policy p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .privacy-policy ul {
            list-style: disc;
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .privacy-policy a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .privacy-policy a:hover {
            color: var(--accent-color);
        }

        /* Animations */
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          

            .privacy-policy h1 {
                font-size: 2rem;
            }

            .privacy-policy h2 {
                font-size: 1.5rem;
            }
        }
   /* Terms & Conditions Section */
        .terms-conditions {
            background-color: #fff8e1;
            text-align: left;
        }

        .terms-conditions h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .terms-conditions h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
        }

        .terms-conditions p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .terms-conditions ul {
            list-style: disc;
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .terms-conditions a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .terms-conditions a:hover {
            color: var(--accent-color);
        }

        /* Animations */
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
         

            .terms-conditions h1 {
                font-size: 2rem;
            }

            .terms-conditions h2 {
                font-size: 1.5rem;
            }
        }

      
      
        /* Thank You Section */
        .thank-you {
            background: linear-gradient(to right, #ff9900, #ff6666);
            color: white;
            text-align: center;
            height: 60vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            border-bottom-left-radius: 50% 20%;
            border-bottom-right-radius: 50% 20%;
        }

        .thank-you h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .thank-you p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--dark-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          

            .thank-you h1 {
                font-size: 2.5rem;
            }

            .thank-you p {
                font-size: 1rem;
            }
        }
   