.awea-icon-box {
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.awea-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.awea-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
}
.awea-icon-box:hover .awea-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
}
.awea-icon-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.awea-icon-box p {
    font-size: 1rem;
    margin-bottom: 24px;
}
.awea-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}
.awea-btn-link:hover {
    gap: 12px;
}
.awea-icon-box::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.2;
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.awea-icon-box:hover::after {
    transform: scale(2);
}