:root {
    --primary-blue: #29ABE2;
    --background-blue: #F0F8FF;
    --card-background: #FFFFFF;
    --text-dark: #212529;
    --text-light: #6C757D;
    --progress-bg: #E9ECEF;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background-blue);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box; /* Ensures padding is included in the element's total width and height */
    overflow-x: hidden; /* Prevents horizontal scrolling caused by nowrap */
}

.main-container {
    width: 100%;
    max-width: 900px; /* Increased from 700px */
}

.company-name {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 0.5rem;
}

h1 {
    /* Fluid typography: scales smoothly from 2rem to 3rem based on viewport width */
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 3rem;
    white-space: nowrap; /* Ensures the text stays on a single line */
}

.status-card {
    background-color: var(--card-background);
    border-radius: 16px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    margin-bottom: 3rem;
}

.status-card h2 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
}

.status-card .subtitle {
    color: var(--text-light);
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    white-space: normal; /* Ensures this text can wrap */
}

.progress-bar-container {
    height: 12px;
    background-color: var(--progress-bg);
    border-radius: 6px;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-blue);
    border-radius: 6px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allows items to wrap onto the next line on smaller screens */
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact-info i {
    color: var(--text-light);
}

.contact-info a,
.contact-info span {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Refined Media Queries for better responsiveness */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    h1 {
        margin-bottom: 2rem;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
    }
}
