/* Right Sidebar Container */
.product-sidebar {
    position: sticky;
    top: 120px;
}

/* Sidebar Heading */
.sidebar-heading {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 3px solid #0a3ea1;
    color: #111;
}

/* Sidebar Buttons */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #00214F;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Arrow */
.sidebar-link span {
    font-size: 18px;
    font-weight: bold;
}

/* Hover Effect */
.sidebar-link:hover {
    background: #062f7d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Active Link */
.sidebar-link.active {
    background: #062f7d;
    box-shadow: inset 4px 0 0 #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .product-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}
/* FAQ Section Container */
.faq-section {
    margin-top: 40px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Question */
.faq-section h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2f4f2f;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
}

/* Q Icon */
.faq-section h4::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #00214F;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Answer */
.faq-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
    padding-left: 30px;
}

/* Hover Effect */
.faq-section h4:hover {
    color: #00214F;
    cursor: default;
}

/* Last Item Fix */
.faq-section p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px;
    }

    .faq-section h4 {
        font-size: 16px;
    }

    .faq-section p {
        font-size: 14px;
    }
}
/* Contact CTA Section */
.contact-cta {
    background: #f1f1f1;
    padding: 25px 20px;
    margin: 40px 0;
    border-radius: 8px;
}

/* Button Container */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.cta-btn {
    min-width: 140px;
    text-align: center;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* WhatsApp */
.cta-btn.whatsapp {
    background: #25D366;
}

/* Email */
.cta-btn.email {
    background: #0a58ca;
}

/* Call */
.cta-btn.call {
    background: #ff5a1f;
}

/* Hover Effect */
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0.95;
}

/* Mobile */
@media (max-width: 576px) {
    .cta-btn {
        width: 100%;
    }
}
.export-area {
  padding: 70px 0;
  background: #f8f9fb;
  font-family: "Segoe UI", Arial, sans-serif;
}

.export-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.export-header h2 {
  font-size: 34px;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.export-header p {
  font-size: 16px;
  color: #666;
}

.export-box {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.export-box h3 {
  font-size: 24px;
  color: #c97719;
  margin-bottom: 20px;
  border-left: 4px solid #c97719;
  padding-left: 12px;
}

.export-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.export-list span {
  background: #f1f1f1;
  color: #333;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.export-list span:hover {
  background: #c97719;
  color: #fff;
}
