
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f7f8fa;
  line-height: 1.6;
}
.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form button {
    font-family: 'Arial', sans-serif;
  }
.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/*cookies Start*/
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    max-width: 90%;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 99999;
}

.service-text {
  max-height: 6.5em;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
}

.service-card.expanded .service-text {
  max-height: 1000px;
}

.read-more {
  background: none;
  border: none;
  color: #ff9800;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.max-width-medium{
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.read-more:hover {
  text-decoration: underline;
}


.cookie-banner::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.cookie-content {
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#cookie-consent-banner.hidden {
    display: none !important;
}

#cookie-accept,
#cookie-decline {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

#cookie-accept {
    background: #d4e4d5;
    color: rgb(0, 0, 0);
}

#cookie-decline {
    background: #d4e4d5;
    color: rgb(0, 0, 0);
}
/*cookies end*/

header {
  background-color: #e0f0ff;
  color: #000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-img{
  width: 10rem;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff9800;
}

.hero {
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: #fff;
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: #ff9800;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 4rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e68900;
}

#services {
  padding: 4rem 1rem;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #007bff;
}

.service-card p {
  color: #555;
  margin: 0;
  flex-grow: 1;
}

.service-img {
  width: 7rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-img-version2 {
  width: 7rem;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Contact */
.contact-section {
  background-color: #fff;
  padding: 4rem 1rem;
  margin: 2rem 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-section p,
.contact-section a {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
  text-decoration: none;
}

.contact-section a:hover {
  color: #007bff;
}

footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  border-top: 0.2rem solid #007bff;
}

footer p {
  margin: 0;
}



.about-section {
  background-color: #fff;
  padding: 4rem 1rem;
  margin: 2rem 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.about-container {
  max-width: 1000px;
}

.about-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-longtext {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about-more.expanded .about-longtext {
  max-height: 2000px;
}

.about-read-more {
  background: none;
  border: none;
  color: #ff9800;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

.about-read-more:hover {
  text-decoration: underline;
}


.about-longtext h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #007bff;
  font-size: 1.4rem;
}

.about-longtext p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}





.about-text {
  flex: 1 1 400px;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007bff;
}

h2 {
  color: #007bff;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.image {
  max-width: 100%;
  width: auto;
  height: 65vh;
}


.contact-section {
  background: linear-gradient(135deg, #f7f8fa, #e0f0ff);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #007bff;
  margin-bottom: 0.5rem;
  position: relative;
}

.decorative-line {
  width: 5rem;
  height: 0.5rem;
  background: linear-gradient(90deg, #007bff, #ff9800);
  margin: 0 auto;
  border-radius: 1rem;
}

.contact-section p,
.contact-section a {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-section a:hover {
  color: #007bff;
}

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gdpr-label {
    text-align: center;
}

.gdpr-label a {
    color: #0066cc;
    text-decoration: underline;
}

.gdpr-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #007bff;
  border-radius: 12px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s, background 0.3s;
  background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff9800;
  box-shadow: 0 0 12px rgba(255, 152, 0, 0.3);
  outline: none;
  background-color: #fefefe;
}

.contact-form button.btn {
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

section:not(.hero) {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#about {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#about::before,
#about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
}

#about::before {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: #007bff;
}

#about::after {
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background-color: #ff9800;
}


section:not(.hero):not(.container-section)::before,
section:not(.hero):not(.container-section)::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
}

section:not(.hero):not(.container-section)::before {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: #007bff;
}

section:not(.hero):not(.container-section)::after {
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background-color: #ff9800;
}

.container-section::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 75%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #007bff;
  opacity: 0.05;
  z-index: -1;
}

.container-section::after {
  content: none;
}

.faq-section {
  background: #fff;
  padding: 5rem 1rem;
  margin-top: 2rem;
}

.faq-list {
  max-width: 900px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.faq-item {
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: #f7f8fa;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e0f0ff;
}

.faq-icon {
  font-size: 1.5rem;
  color: #007bff;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 864px) {
  .about-longtext {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 770px) {
  .about-top {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .about-text p,
  .about-longtext {
    text-align: center;
  }

  .image {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
  }

  .about-read-more {
    margin: 1rem auto 0;
    display: block;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #services h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .about-longtext {
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    gap: 0;
  }

  .image {
    max-width: 100%;
    width: auto;
    height: 40vh;
  }

  .about-text {
    flex: 1 1 0px;
    text-align: center;
  }

  .contact-form {
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 685px) {
  #about::before,
  #about::after {
    content: none;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.7rem;
  }

  .about-longtext h3 {
    font-size: 1.2rem;
  }

  .about-longtext p {
    font-size: 1rem;
  }

  .about-read-more {
    font-size: 0.95rem;
  }
}
