/* General Styles for "Why Choose Us" Section */
.wcus-section {
    padding: 50px 20px;
    text-align: center;
    background: transparent;
    position: relative;
}
  
.wcus-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
  
/* Section Title */
.wcus-title {
    font-size: 38px;
    font-weight: 700;
    color: #000080;
    margin-bottom: 15px;
}

/* Subtitle */
.wcus-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 25px;
}

/* Updated divider to match the FAQ section divider in the image - now BOLDER */
.wcus-divider {
    width: 80%;
    max-width: 800px;
    height: 3px; /* Increased from 2px to 3px to make it bolder */
    background: linear-gradient(to right, transparent, #000080, transparent);
    margin: 10px auto 40px;
    display: block;
    clear: both;
    border-radius: 3px;
}

/* Card Grid */
.wcus-card-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 15px;
}

/* Card */
.wcus-card {
    flex: 1;
    min-width: 250px;
    max-width: 360px;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.wcus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
  
/* Icon Container */
.wcus-icon-container {
    width: 80px;
    height: 80px;
    background: #000080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}
  
/* Card Title */
.wcus-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}
  
/* Card Description */
.wcus-card-description {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    padding: 0 15px;
}

/* Enhanced Responsive Design */

/* Large Desktop Screens */
@media (min-width: 1600px) {
    .wcus-container {
        max-width: 1400px;
    }
    
    .wcus-title {
        font-size: 42px;
    }
    
    .wcus-subtitle {
        font-size: 20px;
    }
    
    .wcus-card {
        padding: 35px 25px;
    }
    
    .wcus-icon-container {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    
    .wcus-card-title {
        font-size: 22px;
    }
    
    .wcus-card-description {
        font-size: 16px;
    }
}

/* Desktop/Laptop */
@media (max-width: 1200px) {
    .wcus-card-grid {
        gap: 15px;
    }
    
    .wcus-card {
        padding: 25px 15px;
    }
}

/* Small Desktop/Large Tablet */
@media (max-width: 992px) {
    .wcus-section {
        padding: 40px 15px;
    }
    
    .wcus-title {
        font-size: 34px;
    }
    
    .wcus-subtitle {
        font-size: 16px;
    }
    
    .wcus-card {
        flex-basis: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .wcus-icon-container {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .wcus-section {
        padding: 35px 15px;
    }
    
    .wcus-title {
        font-size: 30px;
    }
    
    .wcus-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .wcus-divider {
        width: 90%;
        margin: 10px auto 30px;
    }
    
    .wcus-card-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .wcus-card {
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* Mobile Landscape */
@media (max-width: 576px) {
    .wcus-section {
        padding: 30px 10px;
    }
    
    .wcus-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .wcus-subtitle {
        font-size: 14px;
    }
    
    .wcus-divider {
        height: 2px;
        margin: 8px auto 25px;
    }
    
    .wcus-card {
        padding: 20px 15px;
    }
    
    .wcus-icon-container {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .wcus-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .wcus-card-description {
        padding: 0 10px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .wcus-title {
        font-size: 26px;
    }
    
    .wcus-card {
        padding: 20px 12px;
    }
    
    .wcus-icon-container {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .wcus-card-description {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Very Small Mobile */
@media (max-width: 380px) {
    .wcus-section {
        padding: 25px 10px;
    }
    
    .wcus-title {
        font-size: 24px;
    }
    
    .wcus-subtitle {
        font-size: 13px;
    }
    
    .wcus-icon-container {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .wcus-card-title {
        font-size: 17px;
    }
}

/* Extra Small Screens */
@media (max-width: 320px) {
    .wcus-title {
        font-size: 22px;
    }
    
    .wcus-card {
        padding: 15px 10px;
    }
    
    .wcus-icon-container {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Ensure proper display in different orientations */
@media (orientation: landscape) and (max-height: 500px) {
    .wcus-section {
        padding: 20px 10px;
    }
    
    .wcus-card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .wcus-card {
        padding: 15px 10px;
    }
    
    .wcus-icon-container {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .wcus-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .wcus-card-description {
        font-size: 12px;
    }
}

/* Better support for high resolution screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .wcus-divider {
        background: linear-gradient(to right, transparent, #000080, transparent);
    }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .wcus-card {
        transition: box-shadow 0.3s ease;
    }
    
    .wcus-card:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .wcus-section {
        padding: 10px;
    }
    
    .wcus-divider {
        border-bottom: 1px solid #000;
        background: none;
    }
    
    .wcus-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .wcus-icon-container {
        border: 2px solid #000080;
        color: #000080;
        background: none;
    }
}