/* General Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nexa', sans-serif;
    background-image: url("Assets/BG.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.7;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Body & Title */
.main-body {
    width: 90%;
    max-width: 1200px;
    background-color: rgba(36, 46, 58, 0.85);
    border-radius: 20px;
    padding: 20px 15px;
    margin: 30px auto;
    flex-grow: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-title {
    text-align: center;
    font-weight: 700;
    color: #E3E9F9;
    font-size: 2.8em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #596888;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Section Styling */
.hidden {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.terms-section {
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(56, 68, 94, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(161, 176, 204, 0.2);
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #A1B0CC;
    margin-bottom: 15px;
}

.subsection-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subsection h3 {
    font-size: 1.4em;
    color: #E3E9F9;
    margin-bottom: 10px;
    border-bottom: 1px solid #596888;
    padding-bottom: 5px;
}

p,
li {
    font-size: 1.05em;
    font-weight: 300;
    color: #C0C0C0;
    margin-bottom: 8px;
}

ul {
    list-style-position: inside;
    padding-left: 0;
}

ul.contact-list {
    list-style: none;
}

a {
    color: #E3E9F9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #A1B0CC;
}

.can-cannot-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.can-do,
.cannot-do {
    padding: 20px;
    background-color: rgba(36, 46, 58, 0.6);
    border-radius: 10px;
    flex: 1;
}

.can-do h3,
.cannot-do h3 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 15px;
    border: none;
}

.can-do ul,
.cannot-do ul {
    padding-left: 5px;
    list-style-type: '✔️  ';
}

.cannot-do ul {
    list-style-type: '❌  ';
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .main-body {
        padding: 30px 40px;
    }

    .page-title {
        font-size: 3.5em;
    }

    .terms-section h2 {
        font-size: 2.2em;
    }

    .subsection-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
    }

    .subsection {
        flex: 1;
    }

    .can-cannot-container {
        flex-direction: row;
    }
}