
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideDown 1s ease forwards;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInText 1s ease 0.5s forwards;
}

.hero button {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    background-color: #ff7f50;
    color: white;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.hero button:hover {
    transform: scale(1.1);
    background-color: #ff6347;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    transform: scale(1.1);
    background-color: #ff6347;
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideDown {
    0% {opacity: 0; transform: translateY(-50px);}
    100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInText {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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