/* Features Section */
.features-section {
    padding: 8rem 5%;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.features-text {
    flex: 1;
    max-width: 55%;
}

.features-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.features-image:hover .feature-image {
    transform: scale(1.05);
}

.features-section h2.section-title {
    font-size: 3.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.features-section p.section-subtitle {
    font-size: 1.8rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    font-weight: 400;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.feature-details h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.feature-details p {
    color: #7f8c8d;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-content {
        gap: 4rem;
    }
    
    .features-text {
        max-width: 60%;
    }
    
    .features-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 8rem 5%;
    }
    
    .features-content {
        flex-direction: column;
    }
    
    .features-text,
    .features-image {
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
    
    .features-image {
        height: 350px;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 6rem 5%;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .feature-item {
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .feature-details h3 {
        font-size: 1.8rem;
    }
    
    .feature-details p {
        font-size: 1.5rem;
    }
}
