body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9fbfd;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hero-section p {
    font-size: 1.0rem;
    max-width: 800px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.policy-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

p.lead {
    font-size: 1.2rem;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.policy-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-subsection {
    margin-top: 25px;
}

.policy-subsection h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.highlight-box {
    background-color: rgba(106, 17, 203, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.contact-info h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Table of Contents */
.toc {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-color);
}

.toc h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.toc ul {
    list-style-type: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1.0rem;
}

.toc li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.toc a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }
}






/* -- TERMS AND CONDITION -- */

.terms-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.terms-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-list {
    list-style-type: none;
    padding-left: 0;
}

.terms-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.terms-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-subsection {
    margin-top: 25px;
}

.terms-subsection h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box {
    background-color: rgba(106, 17, 203, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.contact-info h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Table of Contents */
.toc {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-color);
}

.toc h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.toc ul {
    list-style-type: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.toc li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.toc a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: var(--primary-color);
}

/* Important Notice */
.important-notice {
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Company Address */
.company-address {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }
}