/* Global Styles (header, footer, etc.) */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dda8bd;
}

header {
    background-color: #f4f4f4;
    padding: 20px 0;
    border-bottom: 2px solid #e1e1e1;
}

header .logo h1 {
    font-size: 36px;
    text-align: center;
    color: #333;
    margin: 0;
    font-weight: 700;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #555;
}

nav ul li a:hover {
    color: #a87b8d;
}

/* Section Spacing and Layout */
section {
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    
}

/* Headings Styling */
section h2 {
    font-size: 26px;
    font-weight: bold;
    color: #4e5e72;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #a87b8d;
    padding-bottom: 20px;
}

/* Paragraph Styling */
section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Unordered List Styling */
section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

section ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

/* Highlight Important Points */
section ul li strong {
    color: #a87b8d;
}
section {
    padding-bottom: 30px; /* Add space between the sections and the footer */
}
.terms-container {
    padding-bottom: 100px; /* Adds space between content and footer */
}



/* Footer Styling */
footer {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 14px;
    padding-top: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    section {
        width: 60%;
        padding: 15px;
        
    }

    section h2 {
        font-size: 20px;
    }

    section p, section ul li {
        font-size: 14px;
    }
}