.titan-features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* What Do You Get with Titan section */
.titan-benefits {
    padding: 80px 0;
    background-color: #fff;
}

.titan-benefits .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.titan-benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.6;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.titan-features .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.titan-features .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.titan-features .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.titan-features .features-description {
    font-size: 18px;
    color: #555;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .titan-features {
        padding: 60px 0;
    }
    
    .titan-features .features-description {
        font-size: 16px;
    }
    
    .titan-features .video-container {
        margin: 0 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-card h4 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    .titan-benefits .section-title p {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .titan-features, .titan-benefits {
        padding: 40px 0;
    }
    
    .titan-features .section-title h2,
    .titan-benefits .section-title h2 {
        font-size: 24px;
    }
    
    .titan-features .section-title h3,
    .titan-benefits .section-title h3 {
        font-size: 16px;
    }
    
    .titan-features .section-title p,
    .titan-benefits .section-title p {
        font-size: 14px;
    }
    
    .titan-features .features-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .titan-features .video-container {
        height: 250px;
        padding-bottom: 0;
    }
    
    .titan-features .video-container iframe {
        height: 100%;
    }
    
    .benefit-card {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
}