/* montserrat-400 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/montserrat-400.woff2') format('woff2');
}
/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('../fonts/montserrat-600.woff2') format('woff2');
}
/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/montserrat-700.woff2') format('woff2');
}
        :root {
            --primary-green: #2E7D32;
            --dark-text: #333;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
        }

        h1, h2, h3, .font-weight-bold {
            font-weight: 600;
        }

        .navbar-brand img {
            max-height: 80px;
        }

        .hero {
            background: url('../Therapiepferd.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 10rem 1rem;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #1b5e20;
            border-color: #1b5e20;
        }

        section {
            padding: 4rem 1rem;
        }

        #methode {
            background-color: var(--light-bg);
        }

        .claim {
            font-size: 1.5rem;
            font-style: italic;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .impact-list .item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
        }
        .impact-list .icon {
            font-size: 2.5rem;
            color: var(--primary-green);
        }
        .impact-list h3 {
            font-size: 1.1rem;
            margin-top: 1rem;
            font-weight: 700;
        }

        #ueber-mich img {
            max-width: 250px;
            border-radius: 50%;
            margin: 0 auto;
            display: block;
        }
        
        #ablauf .step {
            text-align: center;
        }
        #ablauf .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #kontakt {
            background-color: var(--dark-text);
            color: white;
        }
        #kontakt a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
        }
        #kontakt a:hover {
            text-decoration: underline;
        }

        footer {
            background-color: #212529;
            color: #ccc;
            padding: 2rem 1rem;
            text-align: center;
        }
        footer a {
            color: #fff;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }