* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    /* Using a high-quality logistics/cargo stock image from Unsplash as a fallback background */
    background: url('https://images.unsplash.com/photo-1586528116311-ad8ed7c80a30?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85); /* Dark corporate blue overlay */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

header .logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

header .logo span {
    color: #FACC15; /* Yellow/Gold accent common in logistics */
}

main h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

main p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    min-width: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #FACC15;
}

.time-box p {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.contact-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #e2e8f0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #FACC15;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 768px) {
    main h2 { font-size: 2rem; }
    .countdown { gap: 10px; flex-wrap: wrap; }
    .time-box { min-width: 80px; padding: 15px; }
    .time-box span { font-size: 2rem; }
}
