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

body {
    margin: 0;
    padding: 0;
    background-color:  #1a2a6c;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    background: #ffffff;
    padding: 30px 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 5px;
    color: #050d52;
}
.typewriter {
    overflow: hidden;
    border-right: .15em solid #fff;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(30, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff; }
}

.subtitle {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #080f4b;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #090f4d;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #c33764;
}
.zoom-image {
    width: 400px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.zoom-image:hover {
    transform: scale(1.1);
}