/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: white;
    margin: 0;
    padding: 0;
}

/* Container */
.intro-container {
    padding: 40px;
    text-align: center;
}

/* Header */
.intro-header {
    font-size: 36px;
    color: #0073aa;
    margin-bottom: 40px;
}

/* Progress Line */
.progress-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.progress-circle.completed {
    background: #0073aa;
    color: white;
}

.progress-circle.incomplete {
    border: 2px solid black;
    background: white;
    position: relative;
}

.progress-inner-circle {
    width: 20px;
    height: 20px;
    background: #0073aa;
    border-radius: 50%;
    position: absolute;
}

/* Progress Bar */
.progress-bar {
    flex-grow: 1;
    height: 2px;
    background: #0073aa;
    max-width: 75%;
    margin: 0 20px;
}

/* Boxes */
.intro-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.intro-box {
    flex: 1;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Left Box */
.left-box {
    background: white;
}

.intro-gif {
    max-width: 100%;
    height: auto;
}

/* Right Box */
.right-box {
    background: #0073aa;
    color: white;
}

/* Text */
.intro-text {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Button */
.button-container {
    margin-top: auto;
}

.intro-button {
    width: 70%;
    background: white;
    color: #0073aa;
    border: none;
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.intro-button:hover {
    background: #005b87;
    color: white;
}
