.contact-page {
    text-align: center;
    padding-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    padding: 80px 20px;
    color: #fff;
}

.robot-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.robot-img {
    width: 150px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Intro */
.contact-intro {
    max-width: 800px;
    margin: 50px auto 30px;
    padding: 0 20px;
}

.contact-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #a18cd1;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #333;
}

/* Contact Form */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* Direct Contact Info */
.direct-contact {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card i {
    font-size: 40px;
    color: #a18cd1;
    margin-bottom: 15px;
}

.contact-card a {
    color: #a18cd1;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .robot-img {
        width: 100px;
    }
}
