/* Basic style reset and global styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d47a1;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: 32px;
  margin-right: 8px;
}
.logo-text {
  display: inline-block;
}
.site-header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.site-header .main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.site-header .cta-header a {
  background-color:#0d47a1;
  color:#fff;
  padding:10px 20px;
  border-radius:5px;
  text-decoration:none;
}

/* Hero section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.hero .hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 50px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
}
.btn-primary {
  background: #0d47a1;
  color: #fff;
}
.btn-secondary {
  background: #007bff;
  color: #fff;
}

/* Services section */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.service-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 250px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 30%;
}
.service-card h3 {
  margin-top: 0;
  color: #0d47a1;
}

/* Pricing text in service cards */
.service-card .price {
  margin-top: 10px;
  font-weight: bold;
  color: #007bff;
}

/* Language switcher */
.language-switcher {
  margin-left: 20px;
}
.language-switcher a {
  color: #0d47a1;
  text-decoration: none;
  font-weight: 600;
}
.language-switcher a:hover {
  text-decoration: underline;
}

/* Newsletter section */
.newsletter {
  background: #f8f8f8;
  text-align: center;
}
.newsletter-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.newsletter-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
}
.newsletter .privacy-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
}

/* Packages section inherits styles from services */
.packages .service-card {
  position: relative;
}


/* Case studies */
.case-studies .cases {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.case {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 250px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 30%;
}
.case h4 {
  margin-top: 0;
  color: #0d47a1;
}

/* Contact form */
.contact form {
  max-width: 600px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact .form-row {
  display: flex;
  flex-direction: column;
}
.contact .form-row label {
  font-weight: bold;
  margin-bottom: 5px;
}
.contact .form-row input,
.contact .form-row select,
.contact .form-row textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact .contact-details {
  text-align: center;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #0d47a1;
  color: #fff;
}
.site-footer a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .services .service-cards,
  .case-studies .cases {
    flex-direction: column;
  }
  .service-card,
  .case {
    max-width: 100%;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
