/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styles */
.header-container {
    background-color: #00a5d1;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.header-container h1 {
    font-size: 2.5rem;
    margin: 0;
}

.header-container p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Roadmap Section */
.roadmap .container {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Individual Step */
.step {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    border-left: 4px solid #00a5d1;
}

.step-number {
    background-color: #00a5d1;
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-weight: bold;
}

.step-content h2 {
    font-size: 1.5rem;
    color: #00a5d1;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-content a {
    color: #00a5d1;
    text-decoration: underline;
}

.step-content a:hover {
    text-decoration: none;
}

/* Footer Styles */
.footer-container {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}

.footer-container a {
    color: #ffc107;
    text-decoration: underline;
}

.footer-container a:hover {
    color: #e0a800;
}
