/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Container for all sections */
  .container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }
  
  /* Header Section */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo Section */
  .logo img {
    width: 102px;
  }
  
  /* Navigation Menu */
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-menu ul li {
    display: inline-block;
  }
  
  .nav-menu ul li a {
    font-family: system-ui;
    text-decoration: none;
    color: #090911;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
  }
  
  .nav-menu ul li a:hover {
    color: #645FAB;
  }
  
  .nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #645FAB;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-menu ul li a:hover::after {
    width: 100%;
  }
  
  /* Language Selector */
  .language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
  }
  
  .language-icon img {
    width: 54px;
    height: auto;
  }
  
  .language-selector span {
    font-size: 14px;
    font-weight: 600;
  }
  
  .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
  }
  
  .language-dropdown ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
  }
  
  .language-dropdown li {
    padding: 0;
  }
  
  .language-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  .language-dropdown a:hover {
    background-color: #f5f5f5;
    color: #645FAB;
  }
  
  .language-dropdown a.active {
    color: #645FAB;
    font-weight: 600;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    height: 720px;
    background-color: #f6f5f9;
    overflow: hidden;
  }
  
  .hero-section .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(#a096e440, #a096e440),
      url('images/section 1/fc91c059e59c013f7906c635908a8ebb.png') no-repeat center center/cover;
    opacity: 0.4;
    z-index: 0;
  }
  
  .hero-section .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    height: 100%;
  }
  
  /* Left Content: Text and Buttons */
  .hero-text {
    width: 80%;
    padding-top: 200px;
  }
  
  .hero-text h1 {
    font-family: serif;
    font-size: 44px;
    color: #252B42;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 600px;
  }
  

  .hero-text p {
    font-family: system-ui;
    font-size: 18px;
    color: #6f7276;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 550px;
  }
  
  /* Download Buttons */
  .download-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
  }
  
  .download-buttons a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    background-color: #2d3645;
    color: white;
    padding: 8px 18px;
    border-radius: 12px;
    width: 180px;
    height: 6ß0px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .download-buttons a:hover {
    background-color: #242a37;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  
  .download-buttons .button-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .download-buttons .button-text {
    display: flex;
    flex-direction: column;
  }
  
  .download-buttons .button-text .small-text {
    font-family: Georgia;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 2px;
    opacity: 0.9;
  }
  
  .download-buttons .button-text .large-text {
    font-family: serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  /* Right Content: Phone Image */
  .hero-image {
    width: 80%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    height: 100%;
  }
  
  .hero-image .phone-mockup {
    width: 250px;
    position: relative;
    z-index: 3;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
  }
  
  /* Circle decorations for hero section */
  .hero-section .decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
  }
  
  
  /* General Overlay Element Styles */
  .overlay-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
  }
  
  /* Overlay Elements */
  .overlay {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 5;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 8px;
  }
  
  /* Accept Users Request Overlay */
  .accept-request {
    font-family: ui-monospace;
    top: 35%;
    left: 20px;
    background-color: #645FAB;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.2px;
  }
  
  .check-icon {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .check-icon img {
    width: 16px;
    height: 16px;
  }
  
  /* Search for Many Services Overlay */
  .search-services {
    font-family: ui-monospace;
    bottom: 22%;
    right: 100px;
    background-color: #FBBC05;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2px;

  }
  
  .search-icon {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .search-icon img {
    width: 16px;
    height: 16px;
  }
  
  /* Icon inside the overlays */
  .overlay-element img {
    width: 24px;
    height: 24px;
  }
  
  /* Empty Circle Overlay */
  .empty-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  .empty-circle img {
    width: 520px;
    height: auto;
    opacity: 0.7;
  }
  
  /* About Section */
  .about-section {
    padding: 120px 0;
    background-color: #fff;
  }
  
  .about-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .app-info {
    width: 500px;
    padding-right: 50px;
  }
  
  .section-subtitle {
    color: #645FAB;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .section-title {
    font-size: 30px;
    font-weight: 500;
    color: #090911;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .section-description {
    color: #666;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .app-mockup {
    width: 110px;
    height: 500px;
    position: relative;
  }
  
  .purple-circle {
    width: 450px;
    height: 450px;
    background-color: #645FAB;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .phone-container {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    z-index: 2;
    height: 500px;
    width: 400px;
  }
  
  .phone {
    position: absolute;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    overflow: hidden;
  }
  
  .phone-left {
    width: 200px;
    transform: rotate(-10deg);
    left: 300px;
    z-index: 2;
    top: 40%;
    transform: translateY(-50%) rotate(-1deg);
  }
  
  .phone-right {
    width: 250px;
    right: 0;
    z-index: 3;
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(1deg);
  }
  
  .phone img {
    width: 100%;
    height: auto;
    border-radius: 25px;
  }
  
 /* Features Section */
.features {
  padding: 20px 0;
  background-color: #a096e440;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  place-items: center;
  position: relative;
}

.feature-phone-container {
  grid-row: 1 / span 2;
  grid-column: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.purple-circle2 {
  width: 350px;
  height: 350px;
  background-color: #645FAB;
  border-radius: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.9;
}

.feature-phone {
  position: relative;
  z-index: 2;
  text-align: center;
}

.feature-phone img {
  max-height: 600px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.feature-item {
  padding: 30px;
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  width: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5ff;
  color: #645FAB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-family: system-ui;
  font-size: 22px;
  margin-bottom: 15px;
  color: #2d2d2d;
}

.feature-item p {
  color: #737373;
}

.item-1 {
  grid-row: 1;
  grid-column: 1;
}

.item-2 {
  grid-row: 1;
  grid-column: 3;
}

.item-3 {
  grid-row: 2;
  grid-column: 1;
}

.item-4 {
  grid-row: 2;
  grid-column: 3;
}
  
/* App Screens Section */
.app-screens {
  padding: 100px 0;
}

.screens-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  margin-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screens-container::-webkit-scrollbar {
  display: none;
}

.screens-container img {
  height: 500px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.prev-btn, .next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #6c5ce7;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #5b4dd1;
}
  
/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #a096e440;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  padding: 18px 40px;
  border: none;
  background-color: #645FAB;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  box-shadow: 0 5px 15px rgba(100, 95, 171, 0.3);
  display: block;
}

.contact-form button:hover {
  background-color: #5652a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(100, 95, 171, 0.4);
}
  
  /* Footer */
footer {
  padding: 80px 0 30px;
  background-color: #f8f8f8;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.footer-logo {
  flex: 2;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #666;
  margin-bottom: 30px;
  max-width: 400px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links a img {
  height: 24px;
  width: auto;
  margin-bottom: 0;
}

.social-links .divider {
  height: 20px;
  width: 2px;
  opacity: 0.6;
  animation: floatDivider 2s ease-in-out infinite;
}

@keyframes floatDivider {
  0%, 100% {
    transform: translateY(7px);
  }
  50% {
    transform: translateY(18px);
  }
}

.quick-links, .contact-info {
  flex: 1;
  padding-top: 15px;
}

.quick-links h3, .contact-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #2d2d2d;
}

.quick-links ul, .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.quick-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #645FAB;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.contact-info i {
  color: #645FAB;
  width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
}

.copyright a {
  color: #645FAB;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: #5652a1;
  text-shadow: 0 0 5px rgba(100, 95, 171, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-text, .app-info, .section-heading {
  opacity: 0;
}

.hero-text.animate, .app-info.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.section-heading.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-item {
  opacity: 0;
}

.feature-item.animate {
  animation: scaleIn 0.6s ease forwards;
}

/* Animation delay for feature items */
.item-1.animate { animation-delay: 0.1s; }
.item-2.animate { animation-delay: 0.3s; }
.item-3.animate { animation-delay: 0.5s; }
.item-4.animate { animation-delay: 0.7s; }

/* Hover Effects */
.download-buttons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Responsive Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 30px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 0;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .nav-menu ul li {
    width: 100%;
  }
  
  .nav-menu ul li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-section .container,
  .about-section .container,
  .footer-content {
    flex-direction: column;
  }
  
  .hero-text,
  .footer-logo {
    width: 100%;
    text-align: center;
  }
  
  .footer-logo p {
    margin: 0 auto 30px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .quick-links, .contact-info {
    margin-top: 30px;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .feature-phone-container {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 40px;
  }
  
  .item-1, .item-2, .item-3, .item-4 {
    grid-column: 1;
  }
  
  .item-1 { grid-row: 2; }
  .item-2 { grid-row: 3; }
  .item-3 { grid-row: 4; }
  .item-4 { grid-row: 5; }
  
  .quick-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .quick-links-column ul {
    align-items: center;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  color: #645FAB;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-heading h3 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quick-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

/* Secondary pages (Datenschutz, AGB, Impressum) */
.header + main.container {
  padding-top: 120px; /* Add space for the fixed header */
  min-height: 70vh; /* Ensure minimum height for pages with little content */
}

.header + main.container h2 {
  margin-bottom: 20px;
  color: #645FAB;
  font-size: 28px;
}

.header + main.container p {
  margin-bottom: 20px;
}

/* Style for legal content */
.header + main.container pre,
.header + main.container code {
  white-space: pre-wrap;
  font-family: inherit;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Legal content styles */
.legal-content {
  padding: 0 0 40px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.legal-content h4 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: #645FAB;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}


