/* Why Choose Us Section (Hidden) */
.why-choose-us-section {
    display: none; /* Hidden section */
    width: 100%;
    background-color: #070016;
    padding: 80px 10%;
}

.why-choose-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-us-section .main-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}

.why-choose-us-section .main-heading .text-white {
    color: #ffffff;
}

.why-choose-us-section .main-heading .text-purple {
    color: #9d4edd;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* Top Content Section */
.top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.content-column {
    text-align: left;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sub-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    line-height: 1.4;
    padding: 0;
}

.body-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
    justify-content: center;
}

.card {
    width: 625px;
    height: 343px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card:hover {
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

.card-image {
    width: 100%;
    height: auto;
    flex: 1.5;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.1);
    max-width: none;
    max-height: none;
}

.card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-align: left;
    width: 100%;
}

.card-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .cards-grid {
        justify-items: center;
    }
}

@media (max-width: 1024px) {
    .top-content {
        gap: 40px;
    }
    
    .cards-grid {
        gap: 30px;
        justify-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 625px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 5%;
    }
    
    .main-heading {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .top-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 625px;
        height: auto;
        min-height: 343px;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 32px;
    }
    
    .card {
        padding: 25px;
        min-height: 300px;
    }
}
