/* terms.css */
/* Terms and Conditions Page Specific Styles */

.terms-container {
    max-width: 100%;
    overflow: hidden;
}

.terms-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.terms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 125, 50, 0.7);
}

.terms-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.terms-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.terms-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.terms-content-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.terms-content-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.last-updated {
    text-align: right;
    color: #777;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.terms-text h2 {
    color: #2e7d32;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-text li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-text address {
    font-style: normal;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.acceptance-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.accept-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.accept-checkbox input {
    margin-right: 10px;
}

.accept-button {
    padding: 12px 30px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accept-button:hover:not(:disabled) {
    background-color: #1b5e20;
}

.accept-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

footer a {
    color: #2e7d32;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .terms-hero {
        height: 200px;
    }
    
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .terms-content-container {
        padding: 30px 20px;
    }
    
    .last-updated {
        text-align: center;
    }
}