/* What Makes Us Page Specific Styles */

/* Main Content */
.main-content {
    background-color: #1d1f23; 
    padding: 0px;
}

/* Hero Section - copied from what-we-do.css */
.what-we-do-hero {
    padding: 120px 0 80px;
    
    position: relative;
}
.hero-description {
  padding-top: 200px;
}
.what-we-do-header-section {
    position: relative;
    z-index: 1;
}

.what-we-do-page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #838a91;
    margin-bottom: 56px;
    line-height: normal;
}

.what-we-do-subtitle-image {
    margin-bottom: 0;
}

.what-we-do-subtitle-image img {
    width: 100%;
    height: auto;
}

.what-we-do-hero .main-heading {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.what-we-do-hero .main-description {
    font-size: 28px;
    color: #838a91;
    line-height: 1.6;
    max-width: 874px;
}

/* Call to Action Section */
.cta-section {
    background-color: #ffffff;
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    max-width: 100%;
}

.cta-title {
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 871px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: transparent;
    border: 1px solid #d2d2d2;
    color: #8e61a5;
    font-size: 18px;
    font-weight: 400;
    padding: 13px 61px;
    border-radius: 250px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 239px;
    text-align: center;
}

.cta-btn:hover {
    background-color: #8e61a5;
    color: #ffffff;
    border-color: #8e61a5;
}

/* Value Proposition Cards - Simple Layout */
.cards-section {
    display: flex;
    justify-content: center;
}

.cards-section .row {
    justify-content: center;
}

.cards-section .card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: transparent;
    
}

.cards-section .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cards-section .card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cards-section .card-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
}

.cards-section .card-description {
    font-size: 20px;
    color: #838a91;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Footer styles are now handled by styles.css - same as about.html */

/* Responsive Design */
@media (max-width: 768px) {
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 200px;
        padding: 12px 40px;
    }
    
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cta-buttons {
        gap: 16px;
    }
    
}
