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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    width: 100%;
    /* Agar aapka navbar lagbhag 80px lamba hai */
    padding-top: 80px; /* Navbar ke niche content ke liye gap */
}

.container1 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Section Styling */
section {
    margin: 40px 0;
}

h2 {
    color: #1e3c72;
    border-left: 5px solid #2a5298;
    padding-left: 15px;
    margin-bottom: 20px;
}

/* Card System */
.card-1-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card-1 {
    background: white;
    flex: 1;
    min-width: 250px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card-1:hover {
    transform: translateY(-5px);
}

.card-1 h3 {
    color: #2a5298;
    margin-bottom: 10px;
}

/* Table Design */
.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 10px;
    color: #333;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    color: #1e3c72;
}

tr:hover {
    background-color: #f1f7ff;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #333;
    color: #ccc;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
}
.terms-section {
    padding: 80px 10%;
    background-color: #f8fafc;
}

.container-terms {
    max-width: 900px;
    margin: 0 auto;
}

.terms-accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.terms-header {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.terms-header:hover {
    background: #f1f5f9;
    color: #6c5ce7;
}

.terms-header i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Jab active ho toh icon rotate ho jaye */
.terms-item.active .terms-header i {
    transform: rotate(180deg);
}

.terms-item.active .terms-header {
    border-bottom: 1px solid #f1f5f9;
    color: #6c5ce7;
}

.terms-body {
    padding: 0 25px;
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: #fff;
}

.terms-item.active .terms-body {
    padding: 20px 25px;
    max-height: 200px; /* Expand height */
}

.terms-body p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}
    footer {
            background: #0f172a;
            color: #cbd5e1;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }
