
        :root {
            --primary-color: #3598db;
            --secondary-color: #ff6b00;
            --dark-color: #1e2a35;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .bg-primary {
            background-color: var(--primary-color) !important;
        }
        
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #1565c0;
            border-color: #1565c0;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-secondary:hover {
            background-color: #e55a00;
            border-color: #e55a00;
        }
        
        /* Header Styles */
        .top-header {
            background-color: var(--dark-color);
            color: white;
            font-size: 0.9rem;
            padding: 8px 0;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
        }
        
      .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/hero-banner2.png') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 500px; /* Ensure minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
}
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* Services Section */
        .service-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Stats Section */
        .stats-section {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* Pricing Section */
        .pricing-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.featured {
            border-color: var(--primary-color);
            position: relative;
        }
        
        .pricing-card.featured::before {
            content: "Popular";
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--gray-color);
        }
        
        /* Team Section */
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0 0;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            
            padding: 20px 0;
            margin-top: 50px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 80px 0;
            }
            
            .navbar-nav {
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
        }

        /* about page css */
  /* About Page Specific Styles */
.about-hero-section {
    background: white;
    padding: 100px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark-color);
}

.client-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Experts Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    color: #1a76d1;
}

.feature-card h3 {
    color: #1e2a35;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 25px 20px !important;
    }
    
    .feature-icon i {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 50px 0;
    }
    
    .feature-card {
        padding: 20px 15px !important;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Stats Section for About Page */
.stats-section .stat-box {
    text-align: center;
    padding: 20px;
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.stats-section h5 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Badge Styles */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .about-hero-section .display-4 {
        font-size: 2.2rem;
    }
    
    .about-feature {
        justify-content: center;
    }
    
    .expert-card {
        margin-bottom: 30px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .client-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .stats-section .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-section .display-4 {
        font-size: 1.8rem;
    }
    
    .feature-box {
        padding: 30px 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section h1 {
    color: var(--dark-color);
    font-size: 2.8rem;
    line-height: 1.2;
}

.faq-section .lead {
    font-size: 1.2rem;
    color: #6c757d;
}

/* FAQ Items */
.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%);
}

.faq-question h4 {
    font-weight: 600;
    font-size: 1.3rem;
}

.faq-answer {
    border: 1px solid #e9ecef;
    border-top: none;
    line-height: 1.7;
    color: #555;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Collapsible FAQ Items */
.faq-toggle-btn {
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
    cursor: pointer;
}

.faq-toggle-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.faq-toggle-btn[aria-expanded="true"] {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color) !important;
}

.faq-toggle-btn[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
    color: white;
}

.faq-toggle-btn .fa-chevron-down {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-toggle-btn[aria-expanded="true"] .fa-chevron-down {
    color: white;
}

/* CTA Section */
.faq-cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c3e50 100%);
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

.faq-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.faq-cta .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-cta .btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 118, 209, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .faq-section h1 {
        font-size: 2.2rem;
    }
    
    .faq-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h1 {
        font-size: 2rem;
    }
    
    .faq-section .lead {
        font-size: 1.1rem;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-toggle-btn {
        padding: 20px !important;
    }
    
    .faq-toggle-btn span {
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .faq-cta {
        padding: 30px 20px !important;
    }
    
    .faq-cta h3 {
        font-size: 1.8rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta .btn-primary {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-section h1 {
        font-size: 1.8rem;
    }
    
    .faq-section .lead {
        font-size: 1rem;
    }
    
    .faq-question,
    .faq-toggle-btn {
        padding: 15px !important;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 20px !important;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 0.95rem;
    }
}

/* service css start here */
/* Services Page Specific Styles */
.services-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-color);
}

/* Services Grid */
.services-grid-section {
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: #1565c0;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 80px 0;
}

.why-choose-services img {
    transition: transform 0.3s ease;
}

.why-choose-services img:hover {
    transform: scale(1.02);
}

.feature-list .feature-item h5 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-list .feature-item p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-step {
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: #1565c0;
}

.process-step h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
}

.services-cta h2 {
    font-weight: 700;
}

.services-cta .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 35px;
}

.services-cta .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.services-cta .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .services-hero-section {
        padding: 80px 0 50px;
    }
    
    .services-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .why-choose-services .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .services-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .services-grid-section,
    .why-choose-services,
    .process-section,
    .services-cta {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .services-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .services-cta .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .services-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* services inner page */
/* Corporate Tax Service Page Styles */
.service-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero-section h1 {
    color: var(--dark-color);
    font-size: 3.2rem;
    line-height: 1.2;
}

.service-hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-hero-image img:hover {
    transform: scale(1.02);
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Service Description */
.service-description {
    padding: 80px 0;
}

.service-content h2 {
    color: var(--dark-color);
    font-weight: 700;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Work Process Section */
.work-process-section {
    padding: 80px 0;
}

.work-process-section h2 {
    color: var(--dark-color);
    font-weight: 700;
}

.process-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-item h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.process-item p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Service Features */
.service-features {
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Consultation Section */
.consultation-section {
    padding: 60px 0;
}

.consultation-section h2 {
    font-weight: 700;
}

.consultation-section .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 35px;
    transition: all 0.3s ease;
}

.consultation-section .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Related Services */
.related-services {
    padding: 80px 0;
}

.related-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.related-service-card .service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.related-service-card:hover .service-icon {
    transform: scale(1.1);
}

.related-service-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.related-service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1565c0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-hero-section h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .service-hero-section {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .service-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-image {
        margin-top: 40px;
    }
    
    .process-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 60px 0 40px;
    }
    
    .service-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .service-description,
    .work-process-section,
    .service-features,
    .related-services {
        padding: 60px 0;
    }
    
    .consultation-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .consultation-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .feature-card,
    .related-service-card {
        margin-bottom: 30px;
    }
    
    .process-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .service-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .feature-card,
    .related-service-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .related-service-card .service-icon {
        font-size: 3rem;
    }
}

/* contact us css start here */
/* Contact Page Specific Styles */
.breadcrumb {
    padding: 15px 0;
    background-color: #f1f1f1;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #2980b9;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info, .contact-form {
        flex: 100%;
    }
}