:root {
    /* Royal Yellow Color Palette */
    --primary: #FFD700; /* Royal Yellow */
    --primary-dark: #DAA520; /* Golden Yellow */
    --primary-light: #FFEB99; /* Light Yellow */
    --secondary: #2C3E50; /* Dark Blue */
    --secondary-light: #34495E; /* Medium Blue */
    --dark: #1A1A1A; /* Almost Black */
    --light: #F8F9FA; /* Almost White */
    --grey: #6C757D; /* Medium Grey */
    --success: #28A745; /* Green */
    --accent: #FFB300; /* Amber */
    --text: #333333;
    --text-light: #777777;
}

.footer {
    background-color: var(--secondary);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    color: #fff;
}

.footer-logo span.text-accent {
    color: var(--primary);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    height: 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 15px;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}


/* Base Styles */
.business-license-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Section */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 80px 0 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-content {
    flex: 1 1 60%;
    padding-right: 30px;
}

.header-illustration {
    flex: 1 1 35%;
    text-align: center;
}

.header-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-header h1 {
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 2.8rem;
    color: white;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb {
    justify-content: flex-start;
    background: transparent;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.section-title {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-left: 15px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Benefits Box */
.benefits-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefits-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefits-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefits-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

.benefits-box h3 {
    color: var(--secondary);
    margin-bottom: 0;
    font-size: 1.4rem;
}

.benefits-list {
    padding-left: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.benefit-arrow {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* DSC Types */
.dsc-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.type-card {
    flex: 1 1 250px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.type-card.featured {
    border-top: 4px solid var(--accent);
    transform: scale(1.02);
}

.type-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 3px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.type-card:hover .type-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.type-card h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.type-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    min-height: 60px;
}

.price {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price .duration {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-light);
}

/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.document-card {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.document-card:hover .document-icon {
    background: var(--primary);
    color: white;
}

.document-card h5 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.document-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 30px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.service-subtitle {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-highlights {
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-icon {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1rem;
}

.price-box {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 25px 0;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.price-box .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-right: 15px;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.discount {
    background: var(--success);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-feature {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-feature i {
    margin-right: 5px;
    color: var(--primary);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1920x300') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 700px;
    margin: 0 auto;
}

.steps-timeline {
    position: relative;
    padding: 60px 0 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--primary);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1 1 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.5rem;
    border: 5px solid var(--light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--accent);
}

.step-content {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9fafc;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.accordion-button {
    font-weight: 600;
    background-color: white;
    padding: 18px 25px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 20px 25px;
    background-color: #fcfcfc;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-content {
    flex: 1 1 60%;
    padding-right: 30px;
}

.cta-content h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.cta-section .btn-light {
    background: white;
    color: var(--secondary);
    padding: 12px 25px;
    font-weight: 600;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .steps-timeline::before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 992px) {
    .header-content {
        flex: 1 1 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .header-illustration {
        flex: 1 1 100%;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .service-card {
        margin-top: 40px;
        position: static;
    }
    
    .cta-content {
        flex: 1 1 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .steps-timeline {
        flex-direction: column;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .step {
        margin-bottom: 30px;
        text-align: left;
        display: flex;
        align-items: flex-start;
    }
    
    .step-number {
        margin: 0 15px 0 0;
        flex-shrink: 0;
    }
    
    .step-content {
        text-align: left;
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .dsc-types {
        flex-direction: column;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}