body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.container {
    text-align: center;
    background: rgba(0,0,0,0.35);
    padding: 5rem 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.37);
    max-width: 600px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.logo {
    width: 300px;
    height: 300px;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    p { font-size: 1rem; }
    .container { padding: 2rem 1rem; }
}

.contact-form {
    margin-top: 0;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    width: 92%;
    padding: 0.75rem;
    margin-bottom: 1.2rem;
    border: none;
    border-radius: 0.3rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #2c5364;
    color: #fff;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 0.3rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background: #0f2027;
}

.card-rotator {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-rotator button {
   background: #2c5364;
    color: #fff;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 0.3rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.7s cubic-bezier(.4,2,.6,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-front {
    z-index: 2;
    transform: rotateY(0deg);
}
.card-back {
    transform: rotateY(180deg);
    z-index: 1;
}
.card-rotator.flipped .card-front {
    transform: rotateY(-180deg);
    z-index: 1;
}
.card-rotator.flipped .card-back {
    transform: rotateY(0deg);
    z-index: 2;
}
