/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background-color: #f4f7fa;
    color: #2d3748;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: inline-flex;
    list-style: none;
    gap: 10px;
    font-size: 0.95rem;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #f0f0f0;
    font-weight: 600;
}

/* Terms Section */
.terms {
    padding: 80px 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
    margin-top: 40px;
}

.terms h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    color: #2c5282;
    border-left: 4px solid #667eea;
    padding-left: 12px;
}

.terms p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Row styling */
.row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Link styles */
a {
    color: #3182ce;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #1a202c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .terms {
        padding: 40px 20px;
    }
}
