/*
Theme Name: InvestPilotX
Version: 2.0
Author: ChatGPT
*/

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9fb;
  color: #1c1f23;
}

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

header {
  background-color: #0c1b2a;
  padding: 20px 0;
}

.site-logo img {
  max-height: 60px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.header-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-menu li {
  display: inline;
}

.header-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: linear-gradient(to right, #123456, #0c1b2a);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero .cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4af37;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.solutions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  background: #fff;
}

.solution {
  width: 23%;
  background: #f5f7fa;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.solution img {
  width: 60px;
  margin-bottom: 10px;
}

.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  background: #f2f2f2;
  margin: 10px;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  width: 28%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.page-content {
  background-color: #ffffff;
  margin: 40px auto;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
}

.footer-menu a:hover {
  text-decoration: underline;
}

footer {
  background-color: #0c1b2a;
  color: white;
  padding: 40px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


body {
  background-color: #f0f2f5;
}

.site-wrapper {
  max-width: 1240px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .site-wrapper {
    border-radius: 0;
    margin: 0;
    box-shadow: none;
  }

  .page-content {
    border-radius: 0;
    padding: 20px;
  }

  .solution,
  .testimonial {
    border-radius: 8px;
  }
}

.cta-button {
  background-color: #c49a56;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #a57f40;
}

@media screen and (min-width: 1024px) {
  section.hero-loesungen {
    padding-top: 220px;
    padding-bottom: 220px;
  }
}

.cta-button {
  background-color: #d4af37;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #b9962f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

