.hero {
    background: linear-gradient(135deg, #6B1F1F 0%, #8B2F39 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(107, 31, 31, 0.3);
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInDown 0.6s ease;
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(139, 47, 57, 0.3);
    animation: pulse 2s infinite;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button {
    background-color: #8B2F39;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(107, 31, 31, 0.3);
    border: 2px solid #8B2F39;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 31, 31, 0.4);
}

.features {
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFF0EB 0%, #F4E4E1 100%);
    border-radius: 12px;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
    color: #2c3e50;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #8B2F39;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 31, 31, 0.2);
    border-top-color: #6B1F1F;
}

.feature h3 {
    color: #8B2F39;
    font-size: 1.4em;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: #6B1F1F;
}

.feature p {
    color: #7f8c8d;
    font-size: 0.95em;
    line-height: 1.8;
    margin: 0;
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.landing-links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
}

.landing-links a {
    color: black;
    text-decoration: none;
    margin: 0 5px;
}

.landing-links a:hover {
    text-decoration: underline;
}