.py-100 {
    padding: 100px 0;
}

.faq-section {
    background: #f8f9fa;
}

/* Title */
.faq-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
}

/* FAQ Box */
.faq-box {
    border: 2px solid #198754;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    transition: 0.3s ease;
    height: 90%;
}

.faq-box h5 {
    color: #198754;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-box p {
    color: #555;
    margin-bottom: 10px;
}

.faq-box ul {
    padding-left: 18px;
}

.faq-box ul li {
    margin-bottom: 6px;
    color: #444;
}

/* Hover Effect */
.faq-box:hover {
    background: #9fd4bc;
    transform: translateY(-6px);
}

.faq-box:hover h5,
.faq-box:hover p,
.faq-box:hover li {
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }

    .py-100 {
        padding: 70px 0;
    }
}


/* Section Background */
.shipment-track-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

/* Center Container */
.shipment-track-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Design */
.track-card {
    background: #ffffff;
    border: 1px solid #379600;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Text */
.track-text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

.track-text strong {
    font-weight: 600;
    color: #495057;
}

/* Button */
.track-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0a7700;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background-color: #17c900;
    color: white;
    transform: translateY(-2px);
}

/* Icon */
.track-icon {
    font-size: 18px;
}
