body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    width: 95vw;
    max-width: 1200px;
    text-align: center;
    box-sizing: border-box;
}
.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}
h1 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
p {
    font-weight: 400;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    width:50%;
    margin: auto
}
input {
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}
input:focus {
    outline: 2px solid #00c2ff;
}
button {
    padding: 0.9rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: #00c2ff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
button:hover {
    background: #009ace;
}
.info-section {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.info-card {
    background: rgba(0,0,0,0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    flex: 1 1 30%;
    box-sizing: border-box;
    text-align: center;
}
.feature-img, .feature-video {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.footer {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
    }
    .info-card {
        flex: 1 1 100%;
    }
    .container {
        width: 100vw;
        border-radius: 0;
        padding: 1.5rem;
        box-shadow: none;
    }
    form{
        width:100%;
    }
}
