* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(212deg, #122c36, #025b79, #3f8daf);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Logo */
.logo-box img {
    width: 140px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.5s ease;
}

/* Animation class */
.logo-show {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Text */
.title {
    margin-top: 20px;
    font-size: 24px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Contact */
.contact-info p {
    margin: 6px 0;
    font-weight: bold;
}

.contact-info a {
    color: #0f2027;
    text-decoration: none;
}

/* Form */
.lead-form {
    margin-top: 20px;
}

.lead-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.lead-form button {
    width: 100%;
    padding: 12px;
    background: #0f2027;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.lead-form button:hover {
    background: #203a43;
}

.success {
    margin-top: 15px;
    color: green;
    font-weight: bold;
}

/* Tablet */
@media (min-width: 600px) {
    .container {
        max-width: 520px;
    }
    .title {
        font-size: 28px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .container {
        max-width: 600px;
        padding: 40px;
    }
}
