:root {
    --primary: #2563eb;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

/* Hero Section */
.terms-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 50px;
}

.terms-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    margin-top: 112px;
    align-items: center;
    justify-content: center;
}

/* Terms Content */
.terms-content {
    padding-bottom: 60px;
}

.terms-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.terms-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.terms-section p, .terms-section li {
    color: var(--gray);
    margin-bottom: 15px;
}

.terms-list {
    padding-left: 20px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 10px;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.pricing-table th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: left;
}

.pricing-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table tr:nth-child(even) {
    background: #f8fafc;
}

.note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-table {
        display: block;
        overflow-x: auto;
    }
}

/* nav bar icon */

