/* CSS Variables for Blue Theme */
:root {
  --primary-color: #2098D1;
  --accent-color: #2EA3F2;
  --text-dark: #333333;
  --text-light: #666666;
  --background-white: #FFFFFF;
  --background-light: #F7F9FC;
  --border-color: #E1E1E1;
  --border-light: #CBD3E3;
  --icon-bg: #EAF6FD;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
  --border-radius-small: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--icon-bg);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Top Bar */
.top-bar {
  background: var(--background-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.nav-brand h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-features span {
  position: relative;
}

.hero-features span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -1rem;
  color: var(--border-color);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, var(--icon-bg) 0%, var(--background-light) 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

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

.tech-icon {
  font-size: 3rem;
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Our Services Section */
.our-services {
  padding: 6rem 0;
  background: var(--background-white);
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 4rem 0 8rem 0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: var(--background-light);
}

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

.advantage-item {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.advantage-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border-color);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.advantage-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.advantage-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--background-white);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.author-name {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-company {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Partners Section */
.partners {
  padding: 4rem 0;
  background: var(--background-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  text-align: center;
  padding: 1rem;
  color: var(--text-light);
  font-weight: 600;
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Quick Contact Section */
.quick-contact {
  padding: 6rem 0;
  background: var(--background-white);
}

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

.contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item strong {
  color: var(--text-dark);
}

.quick-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--text-dark);
  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;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.footer-description {
  color: #ccc;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

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

.contact-info p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom .footer-links {
  flex-direction: row;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

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

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

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

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

  .advantage-item:not(:last-child)::after {
    display: none;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Page Hero Styles */
.page-hero {
  padding: 4rem 0;
  background: var(--background-light);
  text-align: center;
}

.page-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  background: var(--background-white);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

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

.breadcrumb-nav a:hover {
  color: var(--accent-color);
}

.breadcrumb-nav span {
  color: var(--text-light);
}

/* Service Hero */
.service-hero {
  padding: 4rem 0;
  background: var(--background-white);
  text-align: center;
}

.service-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Description */
.service-description {
  padding: 4rem 0;
  background: var(--background-white);
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
}

.description-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.capabilities h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.capabilities-list {
  list-style: none;
  padding: 0;
}

.capabilities-list li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.capabilities-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background: var(--background-light);
}

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

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
  padding: 4rem 0;
  background: var(--background-white);
}

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

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.benefit-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service FAQ */
.service-faq {
  padding: 4rem 0;
  background: var(--background-light);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service CTA */
.service-cta {
  padding: 4rem 0;
  background: var(--background-white);
  text-align: center;
}

/* Mission Section */
.mission {
  padding: 4rem 0;
  background: var(--background-white);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Values Section */
.values {
  padding: 4rem 0;
  background: var(--background-light);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.value-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 4rem 0;
  background: var(--background-white);
}

.team-member {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.member-name {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.member-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-contact p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

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

/* Certifications Section */
.certifications {
  padding: 4rem 0;
  background: var(--background-light);
}

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

.cert-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.cert-item:hover .cert-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.cert-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cert-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* About CTA */
.about-cta {
  padding: 4rem 0;
  background: var(--background-white);
  text-align: center;
}

/* SLA Section */
.sla-section {
  padding: 4rem 0;
  background: var(--background-white);
}

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

.sla-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.sla-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sla-icon {
  width: 80px;
  height: 80px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.sla-card:hover .sla-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.sla-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.sla-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--background-light);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Support */
.contact-support {
  padding: 4rem 0;
  background: var(--background-white);
}

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

.support-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.support-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.support-methods {
  display: grid;
  gap: 1.5rem;
}

.support-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: var(--border-radius-small);
}

.method-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-info h4 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.method-info p {
  color: var(--text-light);
  margin: 0;
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: var(--background-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-text p {
  color: var(--text-light);
  margin: 0.25rem 0;
}

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

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

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.form-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.main-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.main-form input,
.main-form select,
.main-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  font-size: 1rem;
  transition: var(--transition);
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.1);
}

/* Contact CTA */
.contact-cta {
  padding: 4rem 0;
  background: var(--background-light);
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Legal Content */
.legal-content {
  padding: 4rem 0;
  background: var(--background-white);
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-text h2 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-text ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-text li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
