* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
}

.logo-container {
    margin-bottom: 60px;
}

.logo {
    width: 80px;
    height: auto;
}

.title {
    font-size: 96px;
    font-weight: 500;
    line-height: 1.1;
    color: #2463eb;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #2463eb;
    margin-bottom: 50px;
}

.eligibility-btn {
    background-color: #2463eb;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(36, 99, 235, 0.2);
}

.eligibility-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(36, 99, 235, 0.3);
}

.eligibility-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(36, 99, 235, 0.2);
}

@media (max-width: 768px) {
    .title {
        font-size: 64px;
    }

    .subtitle {
        font-size: 20px;
    }

    .eligibility-btn {
        padding: 14px 40px;
        font-size: 16px;
    }

    .logo {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 48px;
    }

    .subtitle {
        font-size: 18px;
    }

    .logo {
        width: 50px;
    }
}
