/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #121e31 0%, #1f365c 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section[id] {
  scroll-margin-top: 80px;
}
div {
  word-break: break-word;
  overflow-wrap: break-word;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #23c9b3;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff6f61;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ff6f61;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ff6f61;
  color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #23c9b3;
}

/* Header Styles */
.main-header {
  background-color: rgba(18, 30, 49, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo a {
  color: #ffffff;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.menu-icon span {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: #dddddd;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover {
  color: #23c9b3;
}

.main-nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #23c9b3;
  transition: width 0.3s ease;
}

.main-nav a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url("./img/KNfTh.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 30, 49, 0.8) 0%,
    rgba(31, 54, 92, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #dddddd;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #dddddd;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: rgba(18, 30, 49, 0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.service-card {
  background-color: rgba(31, 54, 92, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-description {
  color: #dddddd;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: rgba(31, 54, 92, 0.5);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(35, 201, 179, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 40px;
  height: 40px;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.benefit-description {
  color: #dddddd;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: rgba(18, 30, 49, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: rgba(31, 54, 92, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  color: #dddddd;
}

.testimonial-content:before {
  content: '"';
  font-size: 3rem;
  color: #23c9b3;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-author-name {
  font-weight: 600;
  color: #ffffff;
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: #23c9b3;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  display: none;
}

.faq-label {
  display: block;
  background-color: rgba(31, 54, 92, 0.8);
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-label:hover {
  background-color: rgba(31, 54, 92, 0.9);
}

.faq-label:after {
  content: "+";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(18, 30, 49, 0.5);
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-radius: 0 0 8px 8px;
  padding: 0 1rem;
  color: #dddddd;
}

.faq-question:checked + .faq-label {
  border-radius: 8px 8px 0 0;
  background-color: #23c9b3;
}

.faq-question:checked + .faq-label:after {
  transform: rotate(45deg);
}

.faq-question:checked ~ .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: rgba(18, 30, 49, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  padding: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(35, 201, 179, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-info-icon img {
  width: 20px;
  height: 20px;
}

.contact-info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-info-content p {
  color: #dddddd;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

/* Form Styles */
.form-container {
  background-color: rgba(31, 54, 92, 0.8);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(221, 221, 221, 0.3);
  border-radius: 8px;
  background-color: rgba(18, 30, 49, 0.5);
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #23c9b3;
}

.form-control::placeholder {
  color: rgba(221, 221, 221, 0.6);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}

select.form-control option {
  background-color: #1f365c;
  color: #ffffff;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-input {
  margin-top: 5px;
  margin-right: 10px;
}

.checkbox-label {
  color: #dddddd;
  font-size: 0.9rem;
}

.checkbox-label a {
  font-weight: 600;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 16px;
  background-color: #23c9b3;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #ff6f61;
}

/* Footer Styles */
.main-footer {
  background-color: rgba(18, 30, 49, 0.95);
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-info p {
  color: #dddddd;
}

.footer-contact h3,
.footer-links h3,
.footer-nav h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: #dddddd;
}

.footer-links ul,
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-nav a {
  color: #dddddd;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-nav a:hover {
  color: #23c9b3;
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(221, 221, 221, 0.1);
  color: #dddddd;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(18, 30, 49, 0.95);
  padding: 1rem;
  z-index: 2000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  flex-grow: 1;
  color: #dddddd;
}

#acceptCookies {
  background-color: #23c9b3;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

#acceptCookies:hover {
  background-color: #ff6f61;
}

/* Thank You Page */
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-container {
  margin: 8rem auto 3rem;
  border: 1px solid #ccc;
  padding: 2rem;
  width: fit-content;
  text-align: center;
  background-color: rgba(31, 54, 92, 0.8);
  border-radius: 10px;
}

.thank-you-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.thank-you-container p {
  color: #dddddd;
  margin-bottom: 1.5rem;
}

/* Policy Pages */
.policy-section {
  padding: 8rem 0 3rem;
}

.policy-container {
  background-color: rgba(31, 54, 92, 0.8);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.policy-container h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.policy-container p {
  color: #dddddd;
  margin-bottom: 1rem;
}

.policy-container ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-container ul li {
  color: #dddddd;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 1s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(18, 30, 49, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    padding: 1rem;
    display: block;
    border-top: 1px solid rgba(221, 221, 221, 0.1);
  }

  .menu-toggle:checked ~ .main-nav {
    max-height: 500px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p,
  .footer-links ul,
  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about,
  .services,
  .benefits,
  .testimonials,
  .faq,
  .contact {
    padding: 3rem 0;
  }

  .thank-you-container,
  .policy-container {
    padding: 1.5rem;
  }
}
