/* --- Global Resets & Font Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Use the linked Google Font or a clean system font */
    font-family: 'Playfair Display', Georgia, serif; 
    
    /* Elegant light gray background */
    background-color: #f5f5f5; 
    
    /* Full viewport height to allow centering */
    min-height: 100vh;
    
    /* Flexbox for perfect vertical and horizontal centering */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333; /* Dark text for contrast */
}

/* --- Container & Main Content Styling --- */
.container {
    max-width: 600px;
    padding: 40px;
    background-color: #ffffff; /* White card background */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.icon-header {
    font-size: 4rem;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #4a4a4a;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

/* --- Progress Bar Styling --- */
.progress-bar {
    width: 80%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 0 auto 20px auto; /* Center and space below */
    overflow: hidden; /* Ensures the progress div stays inside */
}

.progress {
    height: 100%;
    background-color: #007bff; /* A nice, professional blue */
    border-radius: 5px;
    /* The 'width' is set inline in the HTML (e.g., style="width: 65%;") */
    transition: width 0.4s ease-in-out; /* Smooth animation if width changes */
}

.small-text {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 25px;
}

/* --- Contact Link Styling --- */
.contact-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.contact-link:hover {
    background-color: #0056b3; /* Darker shade on hover */
}