:root {
  --blue-primary: #2B9FCB;
  --blue-light: #7DD3F5;
  --blue-dark: #1A7EAC;
  --blue-darker: #155A7F;
  
  --black: #1A1A1A;
  --gray-dark: #2D2D2D;
  --gray-medium: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  
  --trust-blue: #1E40AF;
  --success-green: #10B981;
  --alert-red: #EF4444;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Georgia', serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
}

.logo {
  order: 2;
  flex: 0 0 auto;
}

.nav {
  order: 1;
  flex: 1;
}

.nav-cta-wrapper {
  order: 3;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--blue-primary);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--blue-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: var(--blue-dark);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--blue-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.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 {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  color: var(--white);
  margin-top: 90px;
  padding: 60px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23C8A567' 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.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.hero-accent {
  width: 100px;
  height: 4px;
  background-color: var(--blue-primary);
  margin: 0 auto 30px;
}

.hero-subtitle {
  font-size: var(--text-xl);
  margin-bottom: 40px;
  color: var(--gray-light);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: var(--blue-primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 165, 103, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--black);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--blue-primary);
}

.trust-label {
  font-size: var(--text-sm);
  color: var(--gray-light);
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--black);
  font-family: var(--font-secondary);
}

.section-title.center {
  text-align: center;
}

.section-accent {
  width: 80px;
  height: 4px;
  background-color: var(--blue-primary);
  margin-bottom: 40px;
}

.section-accent.center {
  margin-left: auto;
  margin-right: auto;
}

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

.about-text p {
  margin-bottom: 20px;
  color: var(--gray-medium);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.value-item h3 {
  font-size: var(--text-lg);
  margin-bottom: 10px;
  color: var(--black);
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--gray-medium);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 100%);
  border-radius: 10px;
  min-height: 400px;
  position: relative;
}

.compass-watermark {
  font-size: 10rem;
  opacity: 0.3;
}

.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 165, 103, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 15px;
  color: var(--black);
}

.service-card p {
  color: var(--gray-medium);
  margin-bottom: 20px;
}

.service-link {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--blue-dark);
}

.why-choose {
  background-color: var(--gray-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: var(--text-lg);
  margin-bottom: 10px;
  color: var(--black);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--gray-medium);
}

.how-it-works {
  background-color: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-color: var(--blue-primary);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(200, 165, 103, 0.3);
}

.process-step h3 {
  font-size: var(--text-xl);
  margin-bottom: 10px;
  color: var(--black);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--gray-medium);
}

.contact {
  background-color: var(--gray-light);
}

.contact-intro {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: var(--text-sm);
  color: var(--gray-medium);
}

.checkbox-group a {
  color: var(--blue-primary);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.privacy-note {
  font-size: var(--text-sm);
  color: var(--gray-medium);
  margin-bottom: 25px;
  text-align: center;
}

.privacy-note a {
  color: var(--blue-primary);
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 165, 103, 0.3);
}

.footer {
  background-color: var(--black);
  color: var(--gray-light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-tagline {
  color: var(--blue-primary);
  margin-bottom: 20px;
  font-size: var(--text-sm);
}

.footer-contact {
  font-size: var(--text-sm);
  margin-bottom: 10px;
}

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

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-column h4 {
  color: var(--blue-primary);
  margin-bottom: 20px;
  font-size: var(--text-lg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: var(--text-sm);
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray-dark);
  font-size: var(--text-sm);
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: var(--text-xs);
  color: var(--gray-medium);
}

.footer-credit {
  margin-top: 15px;
  font-size: 0.65rem;
  color: #555;
  opacity: 0.6;
}

.footer-credit a {
  color: #666;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-credit a:hover {
  opacity: 0.8;
}

.legal-page {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 40px;
}

.legal-page h1 {
  font-size: var(--text-4xl);
  margin-bottom: 10px;
  color: var(--black);
}

.legal-page .date-info {
  color: var(--gray-medium);
  margin-bottom: 40px;
  font-size: var(--text-sm);
}

.legal-page h2 {
  font-size: var(--text-2xl);
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--black);
}

.legal-page h3 {
  font-size: var(--text-xl);
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--gray-dark);
}

.legal-page p {
  margin-bottom: 15px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 20px;
  margin-left: 30px;
  color: var(--gray-medium);
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--blue-primary);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page strong {
  color: var(--black);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  padding: 40px;
}

.thank-you-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

.thank-you-page h1 {
  font-size: var(--text-4xl);
  margin-bottom: 20px;
  color: var(--black);
}

.thank-you-page p {
  font-size: var(--text-lg);
  color: var(--gray-medium);
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--white);
    transition: left 0.3s ease;
    padding: 30px 0;
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 20px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-indicators {
    gap: 30px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
}
