﻿
/*---English version------------*/
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    margin: 0;
    background: #f9f9f9;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

h1, h2, h3 {
    color: #222;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

.effective-date {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

h2 {
    border-left: 4px solid #007bff;
    padding-left: 10px;
    margin-top: 30px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.checkbox-section {
    margin-top: 40px;
    padding: 20px;
    background: #f1f5ff;
    border-radius: 10px;
    border: 1px solid #dbe4ff;
}

    .checkbox-section label {
        font-size: 15px;
    }

.accept-btn {
    margin-top: 15px;
    padding: 12px 20px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

    .accept-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}


/*---Telugu version------------*/
body {
    font-family: 'Noto Sans Telugu', Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background: #f4f6f9;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

h1, h2, h3 {
    color: #2c3e50;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

.date {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

section {
    margin-bottom: 30px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background: #f1f8ff;
    padding: 10px 15px;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.agreement {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.signatures {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.signature-block {
    text-align: center;
}

@media (max-width: 600px) {
    .signatures {
        flex-direction: column;
        gap: 20px;
    }
}