/* ==== Basic Setup & Variables ==== */
:root {
  --color-white: #FFFFFF;
  --color-primary-bg: #F8F9FA; /* Very Light Gray */
  --color-secondary-bg: #E9ECEF; /* Light Gray */
  --color-accent-1: #FF8C00; /* Dark Orange */
  --color-accent-2: #E6007E; /* Magenta/Pink */
  --color-accent-3: #8A2BE2; /* Blue Violet */
  --color-text-main: #212529; /* Near Black */
  --color-text-light: #495057; /* Darker Gray */

  --font-family-main: 'Poppins', sans-serif; /* Example Font */
  --container-width: 1140px;
  --base-padding: 20px;
  --section-padding: 60px 0;
  --border-radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth; /* For smooth scrolling on internal links */
}

body {
  font-family: var(--font-family-main);
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-primary-bg);
  font-size: 16px;
}

h1, h2, h3 {
  line-height: 1.3;
  margin-bottom: 0.8em;
  color: var(--color-text-main);
}

h1 {
  font-size: 2.8rem; /* Responsive font size recommended */
  font-weight: 700;
  color: var(--color-accent-1); /* Orange heading */
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent-2); /* Pink/Magenta for sub-headings */
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
  color: var(--color-text-light);
}

a {
  color: var(--color-accent-1);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

ul li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 25px; /* Space for custom bullet/icon */
}

ul li::before {
    content: '✓'; /* Simple checkmark */
    color: var(--color-accent-1);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}


.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--base-padding);
}

/* ==== Buttons ==== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-accent-1); /* Dark Orange */
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #e67e00; /* Slightly darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--color-accent-3); /* Blue Violet */
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: #7a1fd6; /* Slightly darker violet */
  transform: translateY(-2px);
  text-decoration: none;
}


/* ==== Header / Hero Section ==== */
.hero {
  background-color: var(--color-secondary-bg); /* Light Gray BG for hero */
  padding: 40px 0 40px 0; /* More padding top */
  text-align: center;
}

.hero h1 {
  margin-bottom: 0.3em;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 1em;
  text-align: center;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5em auto;
  color: var(--color-text-main);
}

.hero .btn {
    margin-bottom: 2em;
}

.hero-image-placeholder {
  margin: 30px auto 0 auto;
  max-width: 700px; /* Adjust as needed */
  background-color: #ccc; /* Placeholder background */
  border-radius: var(--border-radius);
  padding: 60px; /* Placeholder padding */
  color: #666;
  font-style: italic;
  /* BILD: Add actual image styles here */
}
.hero-image-placeholder p {
    color: #666; /* Make placeholder text visible */
    margin-bottom: 0;
}

/* ==== Features Section ==== */
.features {
  padding: var(--section-padding);
  background-color: var(--color-white); /* White background for contrast */
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
  gap: 30px;
  text-align: center; /* Center text within grid items */
}

.feature-item {
  background-color: var(--color-primary-bg); /* Very Light Gray BG for items */
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Add styles for icons if you use them */
/* .feature-item i { font-size: 2.5rem; margin-bottom: 15px; color: var(--color-accent-1); } */


/* ==== Benefits Section ==== */
.benefits-section {
    padding: var(--section-padding);
    background-color: var(--color-secondary-bg); /* Light Gray */
}

.benefits-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: center;
    gap: 40px;
}

.benefits-text {
    flex: 1; /* Take available space */
    min-width: 300px; /* Ensure text doesn't get too squeezed */
}
.benefits-text p, .benefits-text ul {
    text-align: left;
}

.benefits-text .btn {
    margin-top: 1.5em;
}

.benefits-image-placeholder {
    flex: 1; /* Take available space */
    min-width: 300px; /* Ensure image doesn't get too squeezed */
    background-color: #ccc; /* Placeholder background */
    padding: 50px; /* Placeholder padding */
    border-radius: var(--border-radius);
    text-align: center;
    color: #666;
    font-style: italic;
    /* BILD: Add actual image styles here */
}
.benefits-image-placeholder p {
    color: #666;
    margin-bottom: 0;
}

/* ==== CTA Section ==== */
.cta-section {
  padding: var(--section-padding);
  background-color: var(--color-accent-3); /* Blue Violet background */
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2rem;
}

.cta-section p {
  color: var(--color-primary-bg); /* Lighter text on dark background */
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.cta-section .btn-primary {
    background-color: var(--color-accent-1); /* Orange button stands out */
    color: var(--color-white);
}
.cta-section .btn-primary:hover {
    background-color: #e67e00;
}

/* ==== Footer ==== */
.footer {
  background-color: var(--color-text-main); /* Dark Footer */
  color: var(--color-secondary-bg); /* Light text */
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer p {
  margin-bottom: 0.5em;
  color: var(--color-secondary-bg);
}

.footer a {
  color: var(--color-white);
  text-decoration: underline;
}

.footer a:hover {
  color: var(--color-accent-1); /* Orange on hover */
}


/* ==== Responsive Adjustments ==== */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero { padding: 60px 0 30px 0; }
  .benefits-content { flex-direction: column; } /* Stack text and image */
  .benefits-image-placeholder { margin-top: 20px; }
  .feature-grid { grid-template-columns: 1fr; } /* Single column features */
}

@media (max-width: 576px) {
    .btn { padding: 10px 20px; font-size: 0.9rem;}
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero p { font-size: 1rem; }
    .hero h2 { font-size: 1.3rem; }
}