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

body {
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  color: #2d1b69;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ffcc02 50%, #37b24d 75%, #1c7ed6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 27, 105, 0.95);
  color: white;
  padding: 15px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #f7931e;
  transform: scale(1.05);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 3px solid #ff6b35;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d1b69;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo:hover {
  color: #ff6b35;
  transform: rotate(-5deg) scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #2d1b69;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #ff6b35;
  transform: translateY(-2px);
}

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

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

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #2d1b69;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 50px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  z-index: 2;
}

.hero-text h1 {
  font-family: 'Brush Script MT', cursive;
  font-size: 4rem;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  line-height: 1.2;
  transform: rotate(-2deg);
}

.hero-text p {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 30px;
  background: rgba(45, 27, 105, 0.8);
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #ffcc02;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.cta-secondary:hover {
  background: white;
  color: #2d1b69;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(5deg);
  transition: all 0.3s ease;
}

.hero-image:hover img {
  transform: rotate(0deg) scale(1.05);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-1, .float-2, .float-3 {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  width: 80px;
  height: 80px;
  background: rgba(255, 204, 2, 0.3);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  width: 120px;
  height: 120px;
  background: rgba(55, 178, 77, 0.3);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.float-3 {
  width: 60px;
  height: 60px;
  background: rgba(28, 126, 214, 0.3);
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Research Section */
.research {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.9);
  margin: 50px 0;
  transform: skew(0, -2deg);
}

.research > .container {
  transform: skew(0, 2deg);
}

.research h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3rem;
  text-align: center;
  color: #2d1b69;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 30px;
  align-items: center;
}

.research-card {
  background: linear-gradient(135deg, #37b24d, #1c7ed6);
  color: white;
  padding: 30px;
  border-radius: 20px;
  transform: rotate(-3deg);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.research-card:nth-child(2) {
  transform: rotate(3deg);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.research-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.research-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Brush Script MT', cursive;
}

.stat {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 10px;
}

.research-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
  padding: 100px 20px;
  background: rgba(45, 27, 105, 0.1);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3.5rem;
  color: #2d1b69;
  transform: rotate(-1deg);
}

.services-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff6b35;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid;
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(1) { border-top-color: #ff6b35; }
.service-card:nth-child(2) { border-top-color: #f7931e; }
.service-card:nth-child(3) { border-top-color: #37b24d; }
.service-card:nth-child(4) { border-top-color: #1c7ed6; }

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.service-card:hover::before {
  animation: shine 0.6s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  color: #2d1b69;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-family: 'Brush Script MT', cursive;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Pricing Section */
.pricing {
  padding: 100px 20px;
  background: linear-gradient(45deg, #2d1b69, #1c7ed6);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.pricing > .container {
  position: relative;
  z-index: 2;
}

.pricing h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3rem;
  text-align: center;
  color: white;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.price-card {
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  transform: scale(1.1);
  border: 3px solid #ff6b35;
}

.price-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.price-card.featured:hover {
  transform: scale(1.15) rotate(-1deg);
}

.price-header {
  margin-bottom: 30px;
}

.price-header h3 {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  color: #2d1b69;
  margin-bottom: 15px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.discount {
  background: #ffcc02;
  color: #2d1b69;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.features li::before {
  content: '✓';
  color: #37b24d;
  font-weight: bold;
  margin-right: 10px;
}

.price-cta {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
}

.price-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.testimonials h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3rem;
  text-align: center;
  color: #2d1b69;
  margin-bottom: 50px;
  transform: rotate(1deg);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: linear-gradient(135deg, #37b24d, #1c7ed6);
  color: white;
  padding: 30px;
  border-radius: 25px;
  transform: rotate(-2deg);
  transition: all 0.3s ease;
  opacity: 0.7;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card.active {
  opacity: 1;
  transform: rotate(0deg) scale(1.05);
}

.testimonial-card:nth-child(2) {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: rotate(2deg);
}

.testimonial-card:nth-child(3) {
  background: linear-gradient(135deg, #ffcc02, #f7931e);
  transform: rotate(-1deg);
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
}

.testimonial-author strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.testimonial-author span {
  opacity: 0.8;
  font-size: 0.9rem;
}

.testimonial-image {
  text-align: center;
}

.testimonial-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff6b35;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq {
  padding: 100px 20px;
  background: linear-gradient(-45deg, #f7931e, #ffcc02);
  transform: skew(0, 3deg);
}

.faq > .container {
  transform: skew(0, -3deg);
}

.faq h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3rem;
  text-align: center;
  color: white;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  color: #2d1b69;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 107, 53, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: #ff6b35;
}

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

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

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 100px 20px;
  background: rgba(45, 27, 105, 0.95);
  color: white;
}

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

.contact-info h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffcc02;
  transform: rotate(-2deg);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-details {
  display: grid;
  gap: 15px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ffcc02;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.form-submit {
  width: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 15% auto;
  padding: 40px;
  border-radius: 25px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ff6b35;
}

.modal-content h3 {
  font-family: 'Brush Script MT', cursive;
  font-size: 2.5rem;
  color: #2d1b69;
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 1.1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: rgba(255, 255, 255, 0.98);
      flex-direction: column;
      justify-content: start;
      align-items: center;
      transition: all 0.3s ease;
      padding-top: 50px;
      backdrop-filter: blur(10px);
  }

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

  .burger-menu {
      display: flex;
  }

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

  .hero-text h1 {
      font-size: 2.5rem;
  }

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

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

  .services-header {
      grid-template-columns: 1fr;
      text-align: center;
  }

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

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

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

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

  .cookie-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }

  .floating-elements {
      display: none;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
      font-size: 2rem;
  }

  .hero-text p {
      font-size: 1.1rem;
  }

  .cta-primary, .cta-secondary {
      padding: 12px 25px;
      font-size: 1rem;
  }

  .contact-form {
      padding: 20px;
  }

  .modal-content {
      margin: 30% auto;
      padding: 30px 20px;
  }
}