/* Modern CSS with unique design - Different from previous sites */
:root {
  --primary-color: #00ACC1; /* Teal */
  --secondary-color: #004D57; /* Dark Teal */
  --accent-color: #FF7043; /* Orange */
  --light-color: #FFFFFF;
  --gray-color: #F5F5F5;
  --dark-color: #263238;
  --gradient: linear-gradient(135deg, #00ACC1, #00E5FF);
  --font-main: 'Lato', sans-serif;
  --font-heading: 'Barlow', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-color);
  color: var(--dark-color);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  background-color: var(--dark-color);
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.site-title {
  color: var(--light-color);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.navigation {
  display: none; /* Hidden on mobile */
}

.nav-toggle {
  background: transparent;
  border: none;
  color: var(--light-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile navigation */
.mobile-nav {
  position: fixed;
  top: 64px; /* Height of header */
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  color: var(--light-color);
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 5px 0;
}

/* Hero section */
.hero {
  margin-top: 64px; /* Height of header */
  background: var(--gradient);
  color: var(--light-color);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0L50 50L0 100' fill='rgba(255,255,255,0.05)'/%3E%3Cpath d='M100 0L50 50L100 100' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--light-color);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #E56438;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Grid Section */
.card-section {
  padding: 70px 0;
  background-color: var(--gray-color);
}

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

.section-title {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  background-color: var(--primary-color);
  padding: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.card-content {
  padding: 25px;
  flex: 1;
}

.card-title {
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Features Section */
.features {
  padding: 70px 0;
}

.feature-list {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
}

.feature-icon {
  min-width: 60px;
  margin-right: 20px;
  padding-top: 5px;
}

.feature-content h3 {
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Process Section */
.process {
  padding: 70px 0;
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.process-list {
  margin-top: 40px;
}

.process-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.process-item:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.process-item h3 {
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Testimonial Section */
.testimonials {
  padding: 70px 0;
  background-color: var(--gray-color);
}

.testimonial {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* FAQ Section */
.faq {
  padding: 70px 0;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--gray-color);
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* CTA Section */
.cta {
  padding: 70px 0;
  background: var(--gradient);
  color: var(--light-color);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 50px 0 20px;
}

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

.footer-info {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-links h3 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

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

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

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

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #9e9e9e;
}

/* Responsive */
@media (min-width: 768px) {
  .site-title {
    font-size: 1.5rem;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .navigation {
    display: block;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
  }
  
  .nav-list li {
    margin-left: 25px;
  }
  
  .nav-list a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-list a:hover {
    color: var(--accent-color);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
