/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #f9f9f9;
    line-height: 1.6;
    padding: 20px;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1vh;
}
.header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ff0000;
}

h1.slide {
    font-weight: 600;
    color: black;
}

/* Terms Section Styling */
.terms-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.terms-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

/* Highlighted Text Styling */
.terms-section .rebrand {
    color: #007BFF;
    font-weight: 600;
}

.terms-section .rebrandemail {
    color: #007BFF;
    font-weight: 600;
    text-decoration: underline;
}

/* Link Styling */
.terms-section a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

footer .footer-content {
    font-size: 14px;
    color: #777;
}

footer .footer-content p {
    margin-bottom: 10px;
}

footer .footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .footer-content ul li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    color: #007BFF;
}

footer .footer-content ul li a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-section, footer {
        padding: 15px;
    }

    .header h1 {
        font-size: 24px;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .terms-section h3 {
        font-size: 18px;
    }

    .terms-section p, footer .footer-content ul li a {
        font-size: 14px;
    }
}
