.hero-section {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60vh;
    padding: 60px 0 0 8vw;
    margin: 4rem 0rem;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    background: rgba(10, 40, 45, 0.85);
    border-radius: 0 0 0 12px;
    box-shadow: 0 2px 32px rgba(0,0,0,0.18);
    border-left: 3px solid #bdbdbd;
}

.hero-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-divider {
    border: none;
    border-top: 2px solid #fff;
    margin: 0 0 30px 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.hero-desc {
    font-size: 1rem;
    margin-bottom: 18px;
    color: #ccc;
}

.hero-details h3,
.hero-hours h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-details p,
.hero-hours p {
    margin-bottom: 8px;
    color: #fff;
}

.hero-details a,
.hero-details a:visited {
    color: #b3e5fc;
    text-decoration: none;
}

.hero-details a:hover {
    text-decoration: underline;
}

.hero-open-time {
    color: #b3e5fc;
    font-weight: 500;
}

.hero-email-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 28px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.hero-email-btn:hover {
    background: #fff;
    color: #000;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* Hero background image and overlay */
.hero-bg {
    background: url('../img/cargo-s.jpg') center center/cover no-repeat;
    min-height: 500px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.hero-overlay-text {
    background: rgba(80, 100, 105, 0.5);
    color: #fff;
    font-family: 'Dancing Script', cursive, 'Segoe UI', Arial, sans-serif;
    font-size: 2.2rem;
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    letter-spacing: 1px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.hero-actions {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.hero-btn {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: inline-block;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #1a2a2d;
}

.hero-btn-solid {
    background: #bdbdbd;
    color: #1a2a2d;
    border: 2px solid #bdbdbd;
}

.hero-btn-solid:hover {
    background: #fff;
    color: #1a2a2d;
    border-color: #fff;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 0 0 0;
        justify-content: center;
    }
    .hero-left {
        padding: 32px 16px;
        max-width: 100%;
        border-radius: 0 0 12px 12px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-overlay-text {
        font-size: 1.3rem;
        padding: 12px 8px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
}
   

.faq-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
    line-height: 1.1;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0;
    transition: box-shadow 0.2s;
    border: 1px solid #f3f3f3;
    cursor: pointer;
}

.faq-item.active {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-color: #ff6f3c;
}

.faq-question {
    font-size: 1.35rem;
    font-weight: 500;
    color: #222;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    transition: background 0.2s;
}

.faq-item.active .faq-question {
    background: #fff7f2;
}

.faq-toggle-icon {
    font-size: 2rem;
    color: #ff6f3c;
    margin-left: 16px;
    font-weight: 700;
    user-select: none;
    transition: color 0.2s;
}

.faq-answer {
    display: none;
    font-size: 1.08rem;
    color: #444;
    padding: 0 32px 24px 32px;
    line-height: 1.6;
    border-radius: 0 0 18px 18px;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 0 0 0;
        justify-content: center;
    }
    .hero-left {
        padding: 32px 16px;
        max-width: 100%;
        border-radius: 0 0 12px 12px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-overlay-text {
        font-size: 1.3rem;
        padding: 12px 8px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    .faq-main-title {
        font-size: 2.1rem;
    }
    .faq-question {
        font-size: 1.1rem;
        padding: 18px 16px;
    }
    .faq-answer {
        font-size: 1rem;
        padding: 0 16px 16px 16px;
    }
    .faq-list {
        gap: 12px;
    }
}
