/* ========================================
   Features Page Specific Styles
   ======================================== */

/* Features Hero Section */
.features-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.features-hero-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary-dark-light);
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
    word-spacing: 2px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-section-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary-dark-light);
    text-align: center;
    margin-bottom: 20px;
}

.features-section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary-dark-lighter);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 60px;
}

/* Features Image Wrapper */
.features-image-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.features-image-wrapper img {
    width: 50%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features-image-wrapper img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid-item {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.features-grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Two Column Grid */
.features-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

/* One Column Grid */
.features-grid-one {
    grid-template-columns: 1fr;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-hero-section {
        padding: 100px 0 60px;
    }
    
    .features-hero-title {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-section-title {
        font-size: 28px;
    }
    
    .features-section-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid-one {
        grid-template-columns: 1fr;
    }
}
