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

body {
  font-family: 'Roboto', sans-serif;
  color: #334155;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1e73be;
  margin: 0;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #1e73be;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text p {
  font-size: 20px;
  font-weight: 400;
}

/* Call Banner */
.call-banner {
  background-color: #1e73be;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.call-banner h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/* Main Content */
.main-content {
  padding: 40px 0;
}

.page-title {
  font-size: 32px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

.main-image {
  margin-bottom: 40px;
}

.full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-button {
  display: inline-block;
  background-color: #1e73be;
  color: white;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #155a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.service-content {
  padding: 30px;
  background-color: #f9fafb;
  text-align: center;
}

.service-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #3f444b;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 16px;
  color: #3f444b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-button {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #3f444b;
  border-radius: 5px;
  color: #3f444b;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.service-button:hover {
  background-color: #3f444b;
  color: white;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-links a {
  color: #4fc3f7;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #81d4fa;
  text-decoration: underline;
}

.footer-links .separator {
  color: #666;
  font-size: 0.85rem;
}

/* Fixed Call Button */
.fixed-call-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e73be;
  color: white;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.fixed-call-button:hover {
  background-color: #155a8a;
}

.fixed-call-button svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .page-title {
    font-size: 24px;
  }

  .call-banner h2 {
    font-size: 18px;
  }

  .service-content h2 {
    font-size: 20px;
  }

  .fixed-call-button {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 30px;
  }

  .service-image {
    height: 200px;
  }
}