.hero {
    text-align: center;
    padding: 120px 20px 100px;
    background: linear-gradient(135deg, #ffe5cc, #fff9f0);
    border-bottom: 2px solid #f60;
    box-shadow: inset 0 -10px 30px rgba(0,0,0,.05);
    border-radius: 0 0 30px 30px;
}

.hero h2 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #f60;
    text-shadow: 1px 1px 4px rgba(0,0,0,.1);
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.hero-button {
    background-color: #f60;
    color: #fff;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,.2);
    transition: background .3s, transform .2s, box-shadow .2s;
}

.hero-button:hover {
    background-color: #e05c00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
