@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inria+Serif&family=Inter&family=Libre+Caslon+Text&family=Lora&family=Montserrat&family=Outfit&family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: green;
    --secondary-color: green;
    --accent-color: #333333;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --border-color: #cccccc;
    --background-light: #333333;
    --white: #ffffff;
}

body {

    line-height: 1.6;
    color: var(--text-dark);
    background-color: #000000;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    font-family: "Montserrat", sans-serif;
    background: #000000;
    color: var(--white);
    padding: 40px 0;
    margin-bottom: -99px;
    border-radius: 0;
    box-shadow: none;
}

header .container {
    padding: 40px 20px;
}

.back-home-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-home-btn:hover {
    color: green;
    text-decoration: underline;
}

header h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 400;
    color: green;
}

header p {
    font-size: 1.1em;
    opacity: 0.95;
}

h2 {
    font-family: "Montserrat", sans-serif;
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 4px;
    padding-bottom: 15px;
    font-weight: 500;
}

h3 {
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

p {
    font-family: "Lora", serif;
    margin-bottom: 15px;
    text-align: justify;
    color: var(--text-dark);
    font-size: 1em;
    line-height: 1.8;
    font-weight: 300;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

ul li {
    font-family: "Lora", serif;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.8;
}

.highlight-box {
    background-color: transparent;
    border-left: none;
    padding: 0;
    margin: 15px 0;
    border-radius: 0;
}

.highlight-box p {
    margin-bottom: 0;
}

.section {
    background-color: transparent;
    padding: 0;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: none;
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: green;
    text-decoration: underline;
}

.contact-info {
    background-color: #000000;
    color: var(--white);
    padding: 40px 0;
    border-radius: 0;
    margin-top: 40px;
    text-align: center;
}

.contact-info h3 {
    color: green;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.contact-info a {
    color: #ffffff;
}

.contact-info a:hover {
    color: #f0f0f0;
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: none;
    color: var(--text-light);
    margin-top: 40px;
}
footer p {
   text-align: center;
    color: var(--text-light);
}

.effective-date {
    color: var(--text-light);
    font-size: 1.1em;
    font-style: italic;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.1em;
    }

    .container {
        padding: 20px 15px;
    }

    .section,
    .terms-section {
        padding: 20px;
    }
}