/* ===================================
   DueData Core Styles - Cleaned Version
   =================================== */

/* Legacy styles preserved for compatibility */
/* Most styles now handled by modern-style.css */

/* Hero Sections - Legacy Support */
.hero {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.hero .container-fluid {
    padding: 0 60px;
}

.hero h2 {
    color: #213546;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    color: #666666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero img {
    width: 100%;
    height: auto;
}

/* Service Section - Legacy Support */
.service {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-item {
    padding: 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 30px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    color: #213546;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-item p {
    color: #666666;
    font-size: 16px;
}

/* Contact Section - Legacy Support */
.contact {
    position: relative;
    padding: 60px 0;
    background: #ffffff;
}

.contact .section-header h2 {
    color: #213546;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.contact .section-header p {
    color: #666666;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

/* Single Page Styles */
.single {
    padding: 60px 0;
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6 {
    color: #213546;
    margin-bottom: 20px;
}

.single p {
    color: #666666;
    line-height: 1.8;
}

.single ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.single ul li {
    color: #666666;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container-fluid {
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero .container-fluid {
        padding: 0 20px;
    }
    
    .service {
        padding: 40px 0;
    }
    
    .contact {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 24px;
    }
    
    .contact .section-header h2 {
        font-size: 28px;
    }
}