/* Features Page Specific Styles */

.feature-section {
    padding: 4rem 0;
}

.feature-section:nth-child(even) {
    background-color: #f8f9fa;
}

.feature-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #DCF8C6 0%, #25D366 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255,255,255,0.3);
    margin: 0 auto;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #075E54;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-right: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0;
    color: #25D366;
    font-weight: bold;
    font-size: 1.2rem;
}
