
:root {
    --primary-color: #002b9b;
    --secondary-color: #FF6B35;
    --accent-color: #00A859;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --gray-color: #6c757d;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
        margin: 0;
    transition: all 0.3s ease;
    font-size: 14px !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.apply-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #001f7a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: url('img/baan.jpeg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Cost Section */
.cost-section {
    padding: 80px 0;
    background: var(--light-color);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.center-title {
    text-align: center;
}

.center-title:after {
    left: 50%;
    transform: translateX(-50%);
}
.cost-list {
    padding:0;
}
.cost-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.cost-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Partnership Cards */
.partnership-section {
    padding: 80px 0;
}

.partnership-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-header-custom {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    text-align: center;
}

.card-body-custom {
    padding: 30px;
}

.earning-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.investment-badge {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.process-step {
    text-align: center;
    padding: 10px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Franchise Comparison */
.franchise-comparison {
    padding: 80px 0;
    background: var(--light-color);
}

.comparison-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.comparison-card h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Details Section */
.details-section {
    padding: 80px 0;
}

.details-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 43, 155, 0.95), rgba(0, 43, 155, 0.9)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.contact-form input, 
.contact-form select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.contact-form .submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: #001f7a;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* Checklist */
.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.checklist-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    color: white;
    background: var(--primary-color);
}
@media (max-width:767px) {
    .hero-section .contact-form {
        margin-top:30px;
    }
    .flex_direction {
        flex-direction: column-reverse;
    }
}