:root {
  --primary: #2c3e50;
  --secondary: #34495e;
  --accent: #3498db;
  --light-accent: #ecf0f1;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --border-light: #e0e6ed;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  padding-top: 80px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a.active, 
.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active:after,
.nav-links a:hover:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Team Section */
.team-section {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.team-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.footer-col p, .footer-col li {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 100%;
  }
}
/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 15px;
}

.contact-info ul {
  list-style: none;
  margin: 20px 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-info ul li i {
  color: var(--accent);
  margin-right: 10px;
}

.contact-form button {
  padding: 8px 20px;   /* bigger click area */
  font-size: 16px;      /* larger text */
  border-radius: 6px;   /* slightly more rounded */
}
