* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}
:root {
--ics-blue: #082045;
--ics-darkblue: #4b77b5;
}
body {
    background: linear-gradient(135deg, #ffffff, #ddecff);
    color: var(--ics-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100vh;
    padding: 40px;
}

.container {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.logo {
    width: 150px;
    margin-bottom: 30px;
}
.badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: #00a8ff;
    color: var(--ics-blue
    );
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 30px;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    color: var(--ics-darkblue);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #00a8ff;
    margin: 0 auto 40px auto;
    border-radius: 10px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    margin-bottom: 40px;
}

.info-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--ics-blue);
}

.info-box p {
    color: var(--ics-darkblue);
    line-height: 1.6;
}

.contact p {
    margin-bottom: 10px;
    color: var(--ics-darkblue);
}

.contact a {
    color: #00a8ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 60px;
    font-size: 14px;
    color: #8aa3c1;
}