:root {
  --primary-color: #0056b3;
  --secondary-color: #f8f9fa;
  --accent-color: #17a2b8;
  --text-color: #333;
  --light-text: #f8f9fa;
  --border-radius: 5px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1, h2, h3 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Header/Hero Section */
#hero {
  background: linear-gradient(to right, #0062E6, #33AEFF);
  color: var(--light-text);
  text-align: center;
  padding: 6rem 0;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 10px;
}

#hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* About Section */
#about {
  background-color: var(--secondary-color);
  padding: 5rem 0;
}

#about h2, #services h2, #contact h2 {
  text-align: center;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

#about h2:after, #services h2:after, #contact h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

/* Services Section */
#services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background-color: var(--secondary-color);
  padding: 5rem 0;
  text-align: center;
}

.email-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.email-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Footer */
footer {
  background-color: #333;
  color: var(--light-text);
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero .tagline {
    font-size: 1.2rem;
  }
  
  #about h2, #services h2, #contact h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 2rem;
  }
  
  .container {
    width: 95%;
  }
}