/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #f8f7f5;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  color: #4a5568;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a73e8;
  letter-spacing: 0.5px;
}

.logo-accent {
  color: #34a853;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #1a73e8;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a73e8;
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #2d2d2d;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: #34a853;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #34a853;
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.cta-button:hover {
  background: #2d8e47;
  border-color: #2d8e47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
}

.cta-button-secondary {
  background: white;
  color: #1a73e8;
  border-color: white;
}

.cta-button-secondary:hover {
  background: #f8f9fa;
  color: #1557b0;
  border-color: #f8f9fa;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Features Overview */
.features-overview {
  padding: 6rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 115, 232, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.feature-title {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  color: #1a202c;
  font-weight: 700;
  text-align: center;
}

.feature-description {
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
}

.feature-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 8px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.feature-link:hover {
  color: white;
  background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: #f8f7f5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a73e8, #34a853);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.step-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Advantages */
.advantages {
  padding: 6rem 0;
  background: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.advantage-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.advantage-description {
  color: #6b7280;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #f8f7f5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  border-left: 4px solid #1a73e8;
}

.faq-question {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.faq-answer {
  color: #6b7280;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  color: white;
  text-align: center;
}

.cta-title {
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #2d2d2d;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a73e8;
}

.footer-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-company-info {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #34a853;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 0.9375rem;
}

.contact-info a {
  color: #34a853;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Page Hero Styles */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  color: white;
  text-align: center;
}

.page-hero-title {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form Styles */
.contact-form-section {
  padding: 6rem 0;
  background: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrapper {
  background: #f8f7f5;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(44, 62, 80, 0.08);
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #2d2d2d;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.required {
  color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

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

.form-submit {
  width: 100%;
  background: #1a73e8;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: #34a853;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .features-grid,
  .steps-grid,
  .advantages-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .feature-card,
  .step-card,
  .advantage-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .feature-card,
  .step-card,
  .advantage-card {
    padding: 1.25rem 0.75rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* Mission & Values */
.mission-values {
  padding: 6rem 0;
  background: white;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a73e8;
  flex-shrink: 0;
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2d2d2d;
}

.value-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Compliance */
.compliance {
  padding: 6rem 0;
  background: #f8f7f5;
}

.compliance-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.compliance-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

.compliance-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.compliance-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.compliance-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Team */
.team {
  padding: 6rem 0;
  background: white;
}

.team-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.team-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.team-description {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* Facts & Figures */
.facts-figures {
  padding: 6rem 0;
  background: #f8f7f5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Features Detailed Page */
.features-detailed {
  padding: 6rem 0;
  background: white;
}

.features-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card-detailed {
  background: #f8f7f5;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.feature-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1a73e8;
}

.feature-title-large {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.feature-description-large {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-features li {
  padding: 0.5rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.feature-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34a853;
  font-weight: 700;
}

.feature-cta {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: auto;
}

.feature-cta:hover {
  color: #34a853;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 0;
  background: #f8f7f5;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  margin-top: 3rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: linear-gradient(135deg, #1a73e8, #34a853);
  color: white;
  font-weight: 600;
}

.comparison-cell {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.comparison-row:not(.comparison-header) .comparison-cell:first-child {
  text-align: left;
  background: #f8f7f5;
}

/* Process Overview */
.process-overview {
  padding: 6rem 0;
  background: white;
}

.process-steps-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step-detailed {
  text-align: center;
  padding: 2rem;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.process-step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.process-step-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
  color: #1a73e8;
}

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

/* Contact Info Box */
.contact-info-box {
  background: #f8f7f5;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.contact-info-intro {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.contact-method:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a73e8;
  flex-shrink: 0;
}

.contact-method-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #2d2d2d;
  font-weight: 600;
}

.contact-method-text {
  color: #6b7280;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.contact-method-text a {
  color: #1a73e8;
  text-decoration: none;
}

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

.contact-method-note {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Checkbox Label */
.checkbox-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  cursor: pointer;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-label a {
  color: #1a73e8;
  text-decoration: none;
}

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

/* Reassurance Section */
.reassurance-section {
  padding: 6rem 0;
  background: #f8f7f5;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reassurance-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

.reassurance-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a73e8, #34a853);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.reassurance-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.reassurance-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-info {
    grid-template-columns: 1fr;
  }
  
  .contact-info-box {
    position: static;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-cell {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2.5rem;
  }
}



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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Legal Content Pages */
.privacy-data-card {
  background-color: #1a1514;
  border: 1px solid #3d332c;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.privacy-data-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.padlock-icon {
  flex-shrink: 0;
}

.legal-wrapper .privacy-data-card h3 {
  color: #fcd34d;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  padding: 0;
}

.legal-wrapper .privacy-data-card p {
  color: #e5e5e5;
  margin: 0;
  line-height: 1.6;
  font-size: 1.05rem;
}

.legal-wrapper .privacy-data-card strong {
  color: #ffffff;
  font-weight: 700;
}

.legal-content {
  padding: 4rem 0 6rem;
  background: white;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-wrapper h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1a73e8;
}

.legal-wrapper h2:first-child {
  margin-top: 0;
}

.legal-wrapper h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #2d2d2d;
}

.legal-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.25rem;
}

.legal-wrapper ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.legal-wrapper ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.legal-wrapper a {
  color: #1a73e8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal-wrapper a:hover {
  border-bottom-color: #1a73e8;
}

.legal-wrapper strong {
  color: #2d2d2d;
  font-weight: 600;
}

/* Use Cases Section */
.use-cases {
  padding: 6rem 0;
  background: #f8f7f5;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

.use-case-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.use-case-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.use-case-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Product Types Section */
.product-types {
  padding: 6rem 0;
  background: white;
}

.product-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-type-card {
  background: #f8f7f5;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
}

.product-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

.product-type-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.product-type-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.product-type-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: #f8f7f5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Image Placeholders */
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1a73e8;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-photo-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a73e8;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Additional Responsive Updates */
@media (max-width: 968px) {
  .service-desc-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-desc-highlight {
    position: static;
  }
}

@media (max-width: 768px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-wrapper {
    padding: 0 1rem;
  }
  
  .legal-wrapper h2 {
    font-size: 1.5rem;
  }
  
  .legal-wrapper h3 {
    font-size: 1.125rem;
  }
  
  .use-cases-grid,
  .product-types-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
