/* Terms and Conditions Page Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.terms-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    color: #2e7d32;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 32px;
}

.last-updated {
    text-align: center;
    color: #757575;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 14px;
}

.terms-section {
    margin-bottom: 40px;
}

h2 {
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
    padding-left: 10px;
    font-size: 22px;
    margin-top: 30px;
}

p {
    margin-bottom: 15px;
}

ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #2e7d32;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 15px;
        margin: 10px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    h2 {
        font-size: 16px;
    }
}
