
        /* Base Styles */
        body {
            font-family: 'Montserrat', sans-serif;
            color: #1e293b;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f8fafc;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #2563eb;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #10b981;
        }
        
        /* About Section - Mobile Optimized */
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .about-text {
            order: 2;
        }
        
        .about-image {
            order: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        /* Team Section - Full Image Design */
        .team-section {
            padding: 60px 0;
            background-color: #f8fafc;
            
            
        }
        
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            
        }
        
        .team-header {
            text-align: center;
            margin-bottom: 40px;
            
        }
        
        .team-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #2563eb;
            margin-bottom: 15px;
        }
        
        .team-header p {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .team-members {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .team-member {
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }
        
        .member-photo {
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            object-fit: cover;
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-name {
            font-weight: 600;
            font-size: 1.3rem;
            color: #1e293b;
            margin-bottom: 5px;
        }
        
        .member-position {
            color: #64748b;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .member-bio {
            color: #475569;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .team-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-header h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.team-header p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  justify-content: center; /* centers the items horizontally */
  gap: 40px;               /* space between team members */
  flex-wrap: wrap;         /* allows wrapping on smaller screens */
}

.team-member {
  max-width: 300px;
  text-align: left;
}

.member-photo {
  width: 100%;
  
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  clip-path: inset(20px 20px 20px 20px);
}

.member-info {
  margin-top: 15px;
}

.member-name {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.member-position {
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.member-bio {
  font-size: 0.95em;
  color: #777;
}


.social-links a {
  margin-right: 10px;
  color: #0077b5; /* LinkedIn blue */
  font-size: 1.2em;
}
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            width: 36px;
            height: 36px;
            background: #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #2563eb;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Tablet View */
        @media (min-width: 768px) {
            .team-members {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .team-header h2 {
                font-size: 2.3rem;
            }
        }
        
        /* Desktop View */
        @media (min-width: 992px) {
            .team-members {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }
            
            .team-member {
                flex-direction: column;
            }
            
            .member-photo {
                height: 280px;
                aspect-ratio: unset;
            }
        }
        
        /* Contact Section - Mobile Stack */
        #contact {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            padding: 50px 0;
        }
        
        #contact h2 {
            color: white;
            text-align: center;
        }
        
        #contact p {
            text-align: center;
            max-width: 500px;
            margin: 0 auto 30px;
        }
        
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .contact-info {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
        }
        
        .contact-info h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            text-align: center;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(16, 185, 129, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #10b981;
        }
        
        .contact-text strong {
            display: block;
            margin-bottom: 3px;
            font-size: 0.95rem;
        }
        
        .contact-text p {
            margin: 0;
            text-align: left;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .contact-form {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-form h3 {
            color: #2563eb;
            font-size: 1.3rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #2563eb;
        }
        
        .contact-form textarea {
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            background: #10b981;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background: #0ca678;
            transform: translateY(-2px);
        }
        
        /* Tablet View */
        @media (min-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            h2 {
                font-size: 2.3rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-container {
                flex-direction: row;
            }
            
            .contact-info,
            .contact-form {
                flex: 1;
            }
        }
        
        /* Desktop View */
        @media (min-width: 992px) {
            .about-content {
                flex-direction: row;
                align-items: center;
                gap: 50px;
            }
            
            .about-text {
                order: 1;
            }
            
            .about-image {
                order: 2;
            }
            
            .team-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }