
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(177, 180, 180, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.product-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.product-item:hover {
    border-left: 3px solid var(--primary-color);
    transform: translateX(5px);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background-color: #009391;
    border-color: #009391;
    color: white;
}

.btn-outline-primary-custom {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

.card {
    border: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    text-align: center;
    border: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.benefit-icon {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: bold;
}

.phone-mockup {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

.bg-light-custom {
    background-color: #f0f8f8;
}

@media (max-width: 768px) {
    .phone-container {
        margin-bottom: 2rem;
    }
}