:root {
  --primary-color: #2C3D4F;
  --secondary-color: #34495D;
  --accent-color: #EE7738;
  --light-color: #F2F2F2;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #2C3D4F 0%, #34495D 100%);
  --hover-color: #1A252F;
  --background-color: #FEFAE0;
  --text-color: #2C3D4F;
  --border-color: rgba(238, 119, 56, 0.2);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(44, 61, 79, 0.1);
  --highlight-color: #F59D2A;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

/* Neomorphic styles */
.neu-card {
  background: var(--background-color);
  border-radius: 20px;
  box-shadow:
    8px 8px 16px rgba(44, 61, 79, 0.1),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.neu-inset {
  background: var(--background-color);
  border-radius: 12px;
  box-shadow:
    inset 4px 4px 8px rgba(44, 61, 79, 0.1),
    inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.neu-button {
  background: var(--background-color);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow:
    4px 4px 8px rgba(44, 61, 79, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.neu-button:hover {
  box-shadow:
    2px 2px 4px rgba(44, 61, 79, 0.1),
    -2px -2px 4px rgba(255, 255, 255, 0.8);
  transform: translateY(1px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(254, 250, 224, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(44, 61, 79, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: var(--accent-color);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Main content */
main {
  margin-top: 80px;
}

.hero {
  position: relative;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 16, 33, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 119, 56, 0.3);
}

.cta-button:hover {
  background: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 157, 42, 0.4);
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

/* Two column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.column img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(44, 61, 79, 0.2);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* CTA sections */
.cta-section {
  position: relative;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 61, 79, 0.8);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--main-font);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 2rem;
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-color);
}

/* Contact section */
.contact-section {
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: var(--alt-font);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow:
    inset 2px 2px 4px rgba(44, 61, 79, 0.1),
    inset -2px -2px 4px rgba(255, 255, 255, 0.8),
    0 0 0 2px var(--accent-color);
}

/* FAQ */
.faq-item {
  margin-bottom: 2rem;
  padding: 2rem;
}

.faq-item h3 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(44, 61, 79, 0.1);
    padding: 1rem 0;
  }

  .navigation.active {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .header-content {
    flex-direction: column;
    position: relative;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}