/* static/takip/css/landing_page.css */

.hero-section {
    /* Varsayılan arkaplan gradient'i buraya taşıdık */
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.feature-icon { 
    font-size: 3rem; 
    color: #3498db; 
}

.testimonial-card { 
    border-left: 5px solid #3498db; 
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}