/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    background-color: #F8FAFC;
    line-height: 1.6;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 30px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
    margin-bottom: 20px;
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://via.placeholder.com/1920x600?text=Digital+Transformation');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

.hero-banner h1 {
    margin-bottom: 25px;
}

.hero-banner .subtext {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px;
    color: #4B5563;
}

/* Buttons */
.btn-cta {
    background-color: #F59E0B;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #D97706;
    color: white;
    transform: translateY(-2px);
}

/* Our Story */
.our-story {
    background-color: white;
}

.our-story h2 {
    margin-bottom: 25px;
}

/* Core Values */
.core-values {
    background-color: #F8FAFC;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 40px;
    color: #2563EB;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Our Impact */
.our-impact {
    background-color: #1E40AF;
    color: white;
}

.our-impact h2 {
    color: white;
}

.impact-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* Leadership Team */
.leadership {
    background-color: white;
}

.team-member {
   .team-member {
    text-align: center;
    padding: 20px;
}
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #F8FAFC;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member .position {
    color: #4B5563;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member .quote {
    font-style: italic;
    color: #4B5563;
}

/* Culture & Collaboration */
.culture-image {
    padding: 0;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-text {
    padding: 60px;
    background-color: white;
}

.culture-text h2 {
    margin-bottom: 30px;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .culture-text {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-banner {
        padding: 80px 0;
    }
    
    .culture-text {
        padding: 30px 20px;
    }
}