/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #1d70b8; /* Adjusted to match logo blue */
  --light-color: #f1faee;
  --dark-color: #1d3557;
  --white: #ffffff;
  --gray: #f8f9fa;
  --dark-gray: #6c757d;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 12px;
}

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

body {
  font-family: "Poppins", "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark-color);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background-color: var(--light-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(29, 112, 184, 0.1) 100%);
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background-color: #d62839;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(230, 57, 70, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(29, 112, 184, 0.3);
}

.btn-secondary:hover {
  background-color: #1a62a3;
  box-shadow: 0 6px 15px rgba(29, 112, 184, 0.4);
}

/* Services Preview Section */
.services-preview {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(29, 112, 184, 0.05) 100%);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
}

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

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
  border-radius: 50%;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 112, 184, 0.1) 0%, rgba(29, 112, 184, 0) 70%);
  border-radius: 50%;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.feature {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature:hover i {
  transform: scale(1.1);
}

.feature h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

/* Contact Banner */
.contact-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a62a3 100%);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.contact-banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 1.8rem;
  margin-right: 20px;
}

.contact-banner .btn {
  background-color: var(--white);
  color: var(--secondary-color);
  display: block;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-banner .btn:hover {
  background-color: var(--light-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
  border-radius: 50%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(29, 112, 184, 0.1) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
  border-radius: 50%;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 112, 184, 0.1) 0%, rgba(29, 112, 184, 0) 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 20px auto 0;
}

/* About Page Styles */
.about-content {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.mission-values {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.mission-values::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
  border-radius: 50%;
}

.mission {
  text-align: center;
  margin-bottom: 80px;
}

.mission h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.mission h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.mission p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.values h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.value-card:hover i {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.team {
  padding: 100px 0;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.team h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-member-info {
  padding: 25px;
  text-align: center;
}

.team-member h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.team-member .position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

/* Services Page Styles */
.services-intro {
  padding: 40px 0 80px;
}

.intro-text {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-list {
  padding: 0 0 100px;
}

.service-item {
  display: flex;
  margin-bottom: 60px;
  background-color: var(--white);
  border-radius: 6px; /* Reduced from var(--border-radius) which was 12px */
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a62a3 100%);
  color: var(--white);
  border-radius: 0; /* Remove border radius completely for the icon section */
}

.service-content {
  flex: 1;
  padding: 40px;
}

.service-content h2 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.service-content h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.service-content ul {
  list-style: none;
  margin-left: 0;
  margin-top: 25px;
}

.service-content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.service-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.service-process {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.service-process::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
  border-radius: 50%;
}

.service-process h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.service-process h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background-color: var(--secondary-color);
  z-index: 0;
}

.step {
  text-align: center;
  flex: 1;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a62a3 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(29, 112, 184, 0.3);
}

.step h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(29, 112, 184, 0.05) 100%);
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 25px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

/* FAQ Page Styles */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin: 0;
}

.faq-toggle {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  padding: 25px;
  max-height: 500px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.additional-questions {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(29, 112, 184, 0.05) 100%);
  border-radius: var(--border-radius);
  margin: 0 auto;
  max-width: 900px;
}

.additional-questions h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 25px;
}

.additional-questions p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    margin-bottom: 40px;
  }

  .service-item {
    flex-direction: column;
  }

  .service-icon {
    flex: 0 0 120px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2,
  .mission h2,
  .values h2,
  .team h2,
  .service-process h2,
  .cta-section h2,
  .additional-questions h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: 2rem;
  }

  .section-header h2,
  .mission h2,
  .values h2,
  .team h2,
  .service-process h2,
  .cta-section h2,
  .additional-questions h2 {
    font-size: 1.8rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1a62a3;
}
