:root {
    --primary: #0a0e27;
    --primary-light: #131842;
    --accent: #e8a023;
    --accent-hover: #d4911a;
    --secondary: #1a237e;
    --text-light: #c5c8e8;
    --white: #ffffff;
    --gray-bg: #f4f6fc;
    --card-bg: #161b40;
    --border-color: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--white); overflow-x: hidden; }

/* Navbar */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s;
    z-index: 1000;
}
.navbar.scrolled { padding: 8px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.brand-text { font-size: 1.6rem; font-weight: 700; color: var(--white); }
.brand-accent { color: var(--accent); }
.nav-link { color: var(--text-light) !important; font-weight: 500; margin: 0 8px; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.dropdown-menu { background: var(--primary-light); border: 1px solid var(--border-color); }
.dropdown-item { color: var(--text-light); }
.dropdown-item:hover { background: var(--accent); color: var(--white); }
.btn-cta {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-cta:hover { background: var(--accent); color: var(--white); }

/* Buttons */
.btn-accent {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-accent:hover { background: var(--accent-hover); color: var(--primary); transform: translateY(-2px); }
.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-outline-accent:hover { background: var(--accent); color: var(--primary); }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1240 50%, var(--primary) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(26, 35, 126, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(232, 160, 35, 0.05) 0%, transparent 60%);
    z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-subtitle { color: var(--accent); font-weight: 600; font-size: 1.1rem; letter-spacing: 1px; }
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin: 15px 0 25px; }
.text-accent { color: var(--accent); }
.hero-desc { color: var(--text-light); max-width: 750px; margin: 0 auto 30px; font-size: 1rem; line-height: 1.7; }
.hero-stats { color: var(--white); font-weight: 700; margin-bottom: 30px; }
.partner-logos { display: flex; justify-content: center; gap: 40px; align-items: center; margin-bottom: 40px; opacity: 0.6; }
.partner-logo { height: 30px; filter: brightness(0) invert(1); }
.hero-form { max-width: 811px; margin: 0 auto; background: rgba(255,255,255,0.08); padding: 20px; border-radius: 12px; }
.hero-form .form-control { background: var(--white); border: none; }

/* Floating Icons */
.floating-icons { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; pointer-events: none; }
.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}
.icon-1 { top: 15%; left: 5%; width: 60px; animation-delay: 0s; }
.icon-2 { top: 10%; right: 8%; color: #96bf48; font-size: 4rem; animation-delay: 1s; }
.icon-3 { bottom: 15%; right: 3%; color: #fff; font-size: 3.5rem; animation-delay: 2s; }
.icon-4 { top: 12%; right: 15%; color: #ff4444; font-size: 3.5rem; animation-delay: 0.5s; }
.icon-5 { bottom: 20%; left: 3%; color: #4fc3f7; font-size: 3rem; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Sections Common */
.section-subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
.section-desc { color: var(--text-light); line-height: 1.7; }

/* Why Choose Section */
.why-section {
    background: var(--primary);
    padding: 100px 0;
}
.feature-list { margin-top: 30px; }
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}
.feature-item:hover { border-color: var(--accent); transform: translateX(5px); }
.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent), #f0c060);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}
.feature-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.feature-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.consultation-box {
    background: var(--card-bg);
    padding: 15px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-top: 20px;
}
.quote-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}
.quote-card blockquote { font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--text-light); }
.quote-author { color: var(--accent); font-weight: 600; margin-top: 15px; }
.about-image-box img { border-radius: 16px; width: 100%; }

/* Services Section */
.services-section {
    background: var(--gray-bg);
    padding: 100px 0;
    color: var(--primary);
}
.services-section .section-desc { color: #666; }
.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
    border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
}
.service-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-card p { color: #666; font-size: 0.9rem; line-height: 1.6; }
.service-link { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.service-link:hover { color: var(--accent-hover); }

/* Process Section */
.process-section {
    background: var(--primary);
    padding: 100px 0;
}
.process-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}
.process-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}
.process-card h5 { font-weight: 600; margin-bottom: 10px; }
.process-card p { color: var(--text-light); font-size: 0.85rem; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary), #283593);
    padding: 80px 0;
}
.cta-banner h2 { font-size: 2.5rem; font-weight: 700; }
.cta-banner p { color: var(--text-light); }
.cta-desc { max-width: 700px; margin: 15px auto 30px; }

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 100px 0;
}
.stat-progress { margin-bottom: 10px; }
.stat-progress span { font-size: 0.85rem; color: var(--text-light); }
.progress { height: 8px; background: rgba(255,255,255,0.1); border-radius: 10px; }
.progress-bar { background: linear-gradient(90deg, var(--accent), #f0c060); border-radius: 10px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.stat-box h2 { color: var(--accent); font-weight: 800; font-size: 2rem; }
.stat-box p { color: var(--text-light); font-size: 0.85rem; margin: 0; }

/* Packages Section */
.packages-section {
    background: var(--gray-bg);
    padding: 100px 0;
    color: var(--primary);
}
.packages-section .section-desc { color: #666; }
.package-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}
.package-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.package-card.featured { border-color: var(--accent); }
.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}
.package-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; }
.package-card p { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }

/* Testimonials */
.testimonials-section {
    background: var(--primary);
    padding: 100px 0;
}
.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: 0.3s;
}
.testimonial-card:hover { border-color: var(--accent); }
.stars { color: var(--accent); margin-bottom: 15px; }
.testimonial-card p { color: var(--text-light); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), #f0c060);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}
.testimonial-author strong { color: var(--white); }
.testimonial-author small { color: var(--text-light); }

/* FAQ */
.faq-section {
    background: var(--gray-bg);
    padding: 100px 0;
    color: var(--primary);
}
.faq-section .section-desc { color: #666; }
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    padding: 18px 25px;
    background: var(--white);
    color: var(--primary);
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { background: var(--primary); color: var(--white); }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-body { padding: 20px 25px; color: #555; }

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary), #0d1240);
    padding: 100px 0;
}
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--primary);
}
.contact-form-card h4 { font-weight: 700; margin-bottom: 25px; }
.contact-form-card .form-control,
.contact-form-card .form-select {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Footer */
.footer-section {
    background: #060920;
    padding: 60px 0 20px;
}
.footer-brand { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; }
.footer-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.footer-heading { font-weight: 600; margin-bottom: 20px; font-size: 1.05rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: var(--text-light); margin-bottom: 12px; font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.newsletter-form .form-control { background: rgba(255,255,255,0.08); border: 1px solid var(--border-color); color: var(--white); }
.newsletter-form .form-control::placeholder { color: var(--text-light); }
.social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light);
    margin-right: 8px;
    transition: 0.3s;
    text-decoration: none;
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-divider { border-color: var(--border-color); margin: 30px 0 20px; }
.copyright { color: var(--text-light); font-size: 0.85rem; margin: 0; }
.footer-policy-link { color: var(--text-light); text-decoration: none; font-size: 0.85rem; margin-left: 20px; }
.footer-policy-link:hover { color: var(--accent); }
.text-light-muted { color: var(--text-light); font-size: 0.85rem; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 160, 35, 0.3);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { transform: translateY(-3px); color: var(--primary); }

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-section { padding: 120px 0 60px; }
    .navbar-collapse { background: var(--primary); padding: 20px; border-radius: 12px; margin-top: 10px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .partner-logos { flex-wrap: wrap; gap: 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== INNER PAGES ========== */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1240 60%, var(--secondary) 100%);
    padding: 160px 0 80px;
    text-align: center;
}
.page-banner h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; }
.page-banner p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { background: none; justify-content: center; margin: 0; }
.breadcrumb-item a { color: var(--accent); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-light); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }

/* About Intro */
.about-intro-section { background: var(--gray-bg); padding: 100px 0; }
.section-title-dark { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; }
.about-stat-box {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.about-stat-box h3 { font-weight: 800; margin-bottom: 5px; }
.about-stat-box p { color: #666; font-size: 0.85rem; margin: 0; }

/* Mission Cards */
.mission-section { background: var(--primary); padding: 100px 0; }
.mission-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.mission-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.mission-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--accent), #f0c060);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin: 0 auto 20px;
}
.mission-card h4 { font-weight: 700; margin-bottom: 12px; }
.mission-card p { color: var(--text-light); font-size: 0.9rem; }

/* Why Choose (about page) */
.why-choose-section { background: var(--gray-bg); padding: 100px 0; }
.why-item {
    display: flex; gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.why-item:hover { transform: translateX(5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.why-number {
    font-size: 2rem; font-weight: 800; color: var(--accent);
    min-width: 50px;
}
.why-item h5 { font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.why-item p { color: #666; font-size: 0.9rem; margin: 0; }

/* Team Cards */
.team-section { background: var(--gray-bg); padding: 100px 0; }
.team-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--white);
    margin: 0 auto 15px;
}
.team-card h5 { font-weight: 600; color: var(--primary); margin-bottom: 5px; }
.team-desc { color: #666; font-size: 0.85rem; margin-top: 8px; }

/* Contact Page */
.contact-info-section { background: var(--gray-bg); padding: 80px 0; }
.contact-info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.3s;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.contact-info-icon {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white);
    margin: 0 auto 20px;
}
.contact-info-card h5 { font-weight: 600; color: var(--primary); }
.contact-info-card p { color: var(--primary); font-weight: 500; margin-bottom: 5px; }
.contact-info-card small { color: #888; }

.contact-form-section { background: var(--white); padding: 100px 0; }
.contact-form-section .form-label { font-weight: 500; color: var(--primary); }
.map-card { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.contact-hours-card {
    background: var(--gray-bg);
    padding: 25px;
    border-radius: 16px;
}
.contact-hours-card h5 { font-weight: 600; color: var(--primary); margin-bottom: 15px; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555; font-size: 0.9rem;
}
.hours-list li:last-child { border: none; }

/* Packages Page */
.packages-page-section { background: var(--gray-bg); padding: 100px 0; }
.pricing-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    transition: 0.3s;
}
.pricing-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.pricing-card.featured { border-color: var(--accent); }
.pricing-header { margin-bottom: 20px; }
.pricing-header h4 { font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.pricing-tag { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin: 0; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 25px; }
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 0.9rem;
}
.pricing-features li i { margin-right: 8px; }
.pricing-features li .fa-check { color: #28a745; }
.pricing-features li .fa-times { color: #dc3545; }
.pricing-features li.disabled { color: #bbb; }

/* Comparison Table */
.comparison-section { background: var(--white); padding: 80px 0; }
.comparison-table { border-collapse: separate; border-spacing: 0; }
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: center; vertical-align: middle; }
.comparison-table thead th {
    background: var(--primary); color: var(--white);
    font-weight: 600; border: none;
}
.comparison-table thead th.featured-col { background: var(--accent); color: var(--primary); }
.comparison-table tbody td { border-bottom: 1px solid #eee; color: #555; }
.comparison-table tbody td.featured-col { background: rgba(232, 160, 35, 0.05); font-weight: 500; }
.comparison-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--primary); }

/* Service Detail Pages */
.service-detail-section { background: var(--gray-bg); padding: 100px 0; }
.service-features-section { background: var(--primary); padding: 100px 0; }
.service-detail-card {
    background: var(--card-bg);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: 0.3s;
}
.service-detail-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.sdc-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--accent), #f0c060);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
    margin-bottom: 18px;
}
.service-detail-card h5 { font-weight: 600; margin-bottom: 10px; }
.service-detail-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* Service Process */
.service-process-section { background: var(--gray-bg); padding: 100px 0; }
.sp-step { text-align: center; }
.sp-number {
    width: 60px; height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; color: var(--primary);
    margin: 0 auto 15px;
}
.sp-step h5 { font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.sp-step p { color: #666; font-size: 0.85rem; }

/* Pricing Price */
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 10px 0 5px;
    line-height: 1;
}
.pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    display: block;
    margin-top: 5px;
}
.package-card .pricing-price {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 8px;
}
.package-card .pricing-price span {
    display: inline;
    font-size: 0.8rem;
    color: #999;
    margin-left: 4px;
}

/* Legal Pages */
.legal-section {
    background: var(--gray-bg);
    padding: 80px 0;
}
.legal-content {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
    color: var(--primary);
}
.legal-updated {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0 12px;
    padding-top: 10px;
}
.legal-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin: 20px 0 10px;
}
.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.legal-content ul, .legal-content ol {
    color: #555;
    padding-left: 25px;
    margin-bottom: 15px;
}
.legal-content li {
    line-height: 1.8;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
@media (max-width: 767px) {
    .legal-content { padding: 30px 20px; }
}
