/**
 * Estilos para la sección "Do More with Our Enterprise plan"
 * Muestra las características avanzadas del plan Enterprise de Titan Email
 */

.titan-enterprise {
    background-color: #f9f9f9;
    padding: 80px 0;
    margin: 40px 0;
}

.titan-enterprise .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.titan-enterprise .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.titan-enterprise .section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.enterprise-feature {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.enterprise-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 3;
    padding: 20px 35px;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .titan-enterprise {
        padding: 60px 0;
    }
    
    .titan-enterprise .section-title h2 {
        font-size: 32px;
    }
    
    .enterprise-feature {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .titan-enterprise {
        padding: 50px 0;
    }
    
    .titan-enterprise .section-title h2 {
        font-size: 28px;
    }
    
    .titan-enterprise .section-title p {
        font-size: 16px;
    }
    
    .enterprise-feature,
    .enterprise-feature:nth-child(even) {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .feature-content {
        padding: 20px 15px;
        order: 2;
    }
    
    .feature-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 22px;
        text-align: center;
    }
    
    .feature-description {
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .titan-enterprise {
        padding: 40px 0;
    }
    
    .titan-enterprise .section-title h2 {
        font-size: 24px;
    }
    
    .titan-enterprise .section-title p {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .enterprise-feature {
        margin-bottom: 40px;
    }
}