/* Hero Section Styles */
.hero {
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    min-height: 4.5rem;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

.cursor {
    color: #EE2E31;
    animation: blink 0.7s infinite;
    font-weight: normal;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-buttons {
    display: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.hero-btn {
    padding: 12px 28px;
    background-color: transparent;
    color: #C9E4CA;
    border: 2px solid #EE2E31;
    border-radius: 25px;
    font-family: 'Google Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-btn:hover {
    background-color: #EE2E31;
    color: #010001;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(238, 46, 49, 0.3);
}
