:root {
  --background: #f5f7fa;
  --accent: #FF4E4E;
  --text: #1A1A1A;
  --white: #ffffff;
  --mint: #34BFA3;
  --yellow: #FFC857;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--mint);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn:hover {
  background-color: #e03e3e;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--mint);
}

.btn-secondary:hover {
  background-color: #2ca68c;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text);
  font-weight: 500;
}

.contact-header {
  display: flex;
  align-items: center;
}

.contact-header a {
  margin-left: 15px;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-menu-checkbox {
  display: none;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--background);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--white);
}

.benefits-title {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--background);
}

.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background-color: var(--background);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-position {
  font-size: 0.9rem;
  color: #555;
}

/* Order Form Section */
.order {
  padding: 80px 0;
  background-color: var(--background);
}

.order-title {
  text-align: center;
  margin-bottom: 60px;
}

.order-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.order-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group a {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-title {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

details {
  background-color: var(--background);
  border-radius: 8px;
  overflow: hidden;
}

summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

details[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px 20px;
}

/* Footer */
footer {
  background-color: var(--text);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 400px;
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-text {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
}

/* Thank you page */
.thank-you {
  padding: 100px 0;
  text-align: center;
  background-color: var(--background);
}

.thank-you-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--mint);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  color: var(--mint);
  font-size: 4rem;
  margin-bottom: 20px;
}

/* Policy Pages */
.policy {
  padding: 60px 0;
  background-color: var(--background);
}

.policy-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-container h1 {
  margin-bottom: 30px;
}

.policy-content {
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.policy-contact {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
