/* Styles for Hairstyle Guide Page */
#hairstyle-oval,
#hairstyle-round,
#hairstyle-square,
#hairstyle-heart,
#hairstyle-long {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

#hairstyle-oval:first-of-type,
#hairstyle-round:first-of-type,
#hairstyle-square:first-of-type,
#hairstyle-heart:first-of-type,
#hairstyle-long:first-of-type {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

#hairstyle-oval h3,
#hairstyle-round h3,
#hairstyle-square h3,
#hairstyle-heart h3,
#hairstyle-long h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

#hairstyle-oval h4,
#hairstyle-round h4,
#hairstyle-square h4,
#hairstyle-heart h4,
#hairstyle-long h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}

.btn-hairstyle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    margin-top: 1rem;
}

.btn-hairstyle:hover {
    background-color: #e65353;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
