:root {
  --primary-color: #1a2c42;
  --secondary-color: #4a6fa5;
  --accent-color: #334e68;
  --text-color: #e0e0e0;
  --light-text: #f5f5f5;
  --bg-color: #121212;
  --light-bg: #1e1e1e;
  --dark-bg: #0a0a0a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --card-border: 1px solid rgba(74, 111, 165, 0.1);
  --card-gradient: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.6),
    rgba(10, 10, 10, 0.8)
  );
}

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

body {
  font-family: "Libre Baskerville", "Georgia", serif;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-color);
}

body.nav-active {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
}

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

ul {
  list-style: none;
}

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

/* Header */
header {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

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

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light-text);
  margin: 0;
  font-family: "Playfair Display", serif;
}

.logo span {
  font-weight: 400;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--light-text);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

nav ul li a:hover {
  color: white;
}

nav ul li a:hover:after {
  width: 100%;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--secondary-color);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light-text);
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--secondary-color);
  transition: var(--transition);
  margin-left: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(26, 44, 66, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1561414926-7f3f921a2e18?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  z-index: -1;
  opacity: 0.05;
}

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

.hero-content {
  width: 55%;
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 40%;
  position: relative;
}

.hero-image img {
  border-radius: 3px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  border: var(--card-border);
}

.hero-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  top: -15px;
  right: -15px;
  border-radius: 3px;
  z-index: 0;
  opacity: 0.2;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.5);
  padding: 8px 15px;
  border-radius: 3px;
  border: var(--card-border);
}

.trust-badge i {
  color: var(--secondary-color);
  font-size: 16px;
}

.trust-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-text);
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 18px;
  margin-top: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 15px;
  transition: var(--transition);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link i {
  font-size: 12px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--light-text);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 36px;
  color: var(--light-text);
  position: relative;
  display: inline-block;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.about:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.1), transparent);
  top: -150px;
  left: -150px;
}

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

.about-text {
  width: 60%;
}

.about-stats {
  width: 35%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stat {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  background: var(--card-gradient);
  padding: 30px 20px;
  border-radius: 3px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: var(--card-border);
  position: relative;
  overflow: hidden;
}

.stat:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  bottom: 0;
  left: 0;
}

.stat:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
}

.stat-text {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.services:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.1), transparent);
  bottom: -200px;
  right: -200px;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  flex: 1;
  min-width: 0;
  background: var(--card-gradient);
  padding: 25px 15px;
  border-radius: 3px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: var(--card-border);
  position: relative;
  overflow: hidden;
}

.service-card:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover:after {
  width: 100%;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--light-text);
  font-family: "Playfair Display", serif;
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(74, 111, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon i {
  font-size: 24px;
  color: var(--secondary-color);
}

/* Position Section */
.position {
  padding: 120px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

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

.position-text {
  width: 55%;
}

.position-image {
  width: 40%;
}

.position-image img {
  border-radius: 3px;
  box-shadow: var(--shadow);
  border: var(--card-border);
}

.position-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.position-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.position-text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.position-text ul li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 14px;
}

/* Process Section */
.process {
  padding: 120px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.process:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.05), transparent);
  top: -150px;
  right: -150px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  align-items: flex-start;
  background: var(--card-gradient);
  padding: 30px;
  border-radius: 3px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: var(--card-border);
  position: relative;
  overflow: hidden;
}

.step:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
}

.step:hover:after {
  width: 100%;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--light-text);
  font-family: "Playfair Display", serif;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(26, 44, 66, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1623520527569-fee1da4ea3ba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
      no-repeat center center/cover;
  background-attachment: fixed;
  color: var(--light-text);
  text-align: center;
  position: relative;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a6fa5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 36px;
  color: var(--light-text);
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.cta p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-bg);
}

.cta .btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.cta .btn-secondary {
  border-color: var(--light-text);
  color: var(--light-text);
}

.cta .btn-secondary:hover {
  background-color: var(--light-text);
  color: var(--dark-bg);
}

/* Contact Form */
.contact-form-container {
  max-width: 600px;
  margin: 40px auto;
  background: var(--card-gradient);
  padding: 40px;
  border-radius: 3px;
  box-shadow: var(--shadow);
  border: var(--card-border);
  position: relative;
}

.contact-form-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  top: 0;
  left: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(74, 111, 165, 0.3);
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--light-text);
  border-radius: 3px;
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: 14px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 5px rgba(74, 111, 165, 0.5);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23e0e0e0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
  padding-right: 30px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  cursor: pointer;
  border: none;
  width: auto;
  align-self: center;
  margin-top: 10px;
}

.contact-form ::placeholder {
  color: rgba(224, 224, 224, 0.7);
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 0 15px;
  }
}

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

footer:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.05), transparent);
  bottom: -150px;
  left: -150px;
  z-index: 0;
}

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

.footer-logo h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--light-text);
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.footer-logo span {
  font-weight: 400;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact h4,
.footer-hours h4,
.footer-links h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h4:after,
.footer-hours h4:after,
.footer-links h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.footer-contact p,
.footer-hours p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(74, 111, 165, 0.1);
  padding: 20px 0;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.social-icons a {
  color: var(--light-text);
  font-size: 18px;
  margin-left: 15px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-content,
  .about-text,
  .position-text {
    width: 100%;
    margin-bottom: 40px;
  }

  .hero-image,
  .about-stats,
  .position-image {
    width: 100%;
  }

  .hero .container,
  .about-content,
  .position-content {
    flex-direction: column;
  }

  .services-grid {
    flex-wrap: wrap;
  }

  .service-card {
    flex: 0 0 48%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .logo h1 {
    font-size: 20px;
  }

  nav ul li {
    margin-left: 15px;
  }

  nav ul li a {
    font-size: 14px;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about,
  .services,
  .position,
  .process,
  .cta {
    padding: 60px 0;
  }

  .stat {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    margin: 0 8px;
  }

  /* Mobile Navigation */
  .mobile-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    padding: 80px 30px;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin: 10px 0;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
    width: 100%;
    font-size: 18px;
    color: var(--light-text);
  }

  nav ul li a.btn-primary {
    margin-top: 20px;
    text-align: center;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .trust-badge {
    width: fit-content;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-secondary {
    margin-left: 0;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    flex: 0 0 100%;
  }
}

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

.service-card,
.stat,
.step {
  animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(2),
.stat:nth-child(2),
.step:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3),
.stat:nth-child(3),
.step:nth-child(3) {
  animation-delay: 0.4s;
}

.service-card:nth-child(4),
.stat:nth-child(4),
.step:nth-child(4) {
  animation-delay: 0.6s;
}

.hero-content {
  animation: fadeIn 0.8s ease forwards;
}

.hero-image {
  animation: fadeIn 1s ease forwards;
}

/* Mobile Navigation */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--light-text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    padding: 80px 30px;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin: 10px 0;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
    width: 100%;
    font-size: 18px;
    color: var(--light-text);
  }

  nav ul li a.btn-primary {
    margin-top: 20px;
    text-align: center;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    margin-top: 40px;
  }

  /* Other responsive adjustments */
  .about,
  .services,
  .position,
  .process,
  .cta {
    padding: 60px 0;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
}

.trust-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.7);
  padding: 12px 20px;
  border-radius: 3px;
  border: var(--card-border);
}

.trust-item i {
  color: var(--secondary-color);
  font-size: 18px;
}

.trust-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-text);
}
