/* 
* Mom Elementor Widgets - общие стили
*/

.mom-hero-widget {
    padding: 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.mom-cta-widget {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.mom-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mom-cta-button:hover {
    background-color: #005d87;
}

/* Info Box Widget */
.mom-info-box {
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.mom-info-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.mom-info-box-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.mom-info-box-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.mom-info-box-description {
    line-height: 1.6;
} 