:root {
    --color-primary: #D4A017;
    --color-primary-dark: #B8860B;
    --color-dark: #353F52;
    --color-light: #F8F7F2;
    --color-white: #FFFFFF;
    --color-text: #1F2736;
    --radius: 16px;
    --container: 1120px;
    --font-heading: 'Juice ITC', cursive;
    --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.is-animating {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: #FFFFFF;
    line-height: 1.6;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

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

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
}

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

a:hover {
    color: var(--color-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: fadeInUp 0.7s ease both;
}

body.reduce-motion .fade-in-section,
body.reduce-motion .fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
    will-change: auto;
}

.card,
.dog-card,
.fee-card,
.foster-card,
.contact-form,
.faq-container,
.team-member,
.member-avatar,
.btn,
.btn-primary,
.btn-secondary,
.btn-hero-cta,
.btn-nav-outline,
.foster-btn,
.contact-submit-btn,
.newsletter-btn,
.nl-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    will-change: transform;
}

.card:hover,
.dog-card:hover,
.fee-card:hover,
.foster-card:hover,
.contact-form:hover,
.faq-container:hover,
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 39, 54, 0.12);
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-hero-cta:hover,
.btn-nav-outline:hover,
.foster-btn:hover,
.contact-submit-btn:hover,
.newsletter-btn:hover,
.nl-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(31, 39, 54, 0.18);
}

.team-member {
    overflow: hidden;
}

.member-avatar {
    transform: translateZ(0);
}

.member-avatar .avatar-img {
    transition: transform 0.6s ease;
    will-change: transform;
}

.team-member:hover .member-avatar .avatar-img {
    transform: scale(1.08);
}

[data-stagger]>* {
    transition-delay: 0s;
}

.section {
    padding: 5rem 0;
}

.mission {
    background: var(--color-white);
}

.section.foster {
    background: #F5F5F5;
}

.foster-card {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.foster-title {
    color: var(--color-primary);
    font-family: "Fredoka", sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.foster-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.foster-btn {
    background: var(--color-primary);
    color: white;
    border-radius: 10px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .foster-text {
        width: 100%;
    }
}

.mission .card {
    background: #f8f6f0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(53, 63, 82, 0.08);
}

.nav-wrap {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    position: absolute;
    left: 0;
}

.btn-nav-outline {
    position: absolute;
    right: 0;
}

.brand-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-primary);
    color: var(--color-white);
}

.site-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.2rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a {
    font-weight: 700;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.site-nav a.is-active,
.site-nav a:hover {
    border-bottom-color: var(--color-primary);
}

.btn-nav-outline {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-radius: 8px;
}

.btn-nav-outline:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
}

.hero-grid,
.split-grid,
.fee-grid,
.footer-grid {
    display: grid;
    gap: 2rem;
    background: var(--color-white);
    color: #D4A017;
    border-color: #D4A017;
}

.nav-toggle {
    display: none;
}

.fee-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-background .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 100px 0;
    color: var(--color-white);
}

.hero-content h1 {
    color: var(--color-white);
    font-size: clamp(2.6rem, 6vw, 6rem);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-image-2 {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero-cta {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border-radius: 8px;
}

.btn-hero-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.eyebrow {
    display: inline-block;
    font-weight: 700;
    color: var(--color-dark);
    background: color-mix(in srgb, var(--color-primary) 22%, white);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.lead {
    font-size: 1.2rem;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    color: var(--color-white);
    filter: brightness(0.94);
}

.btn-secondary {
    border-color: var(--color-dark);
}

.hero-card img,
.dog-card,
.card,
.fee-card,
.contact-form {
    border-radius: var(--radius);
    background: var(--color-white);
}

.hero-card img {
    object-fit: cover;
    width: 100%;
    min-height: 340px;
}

.cards-grid,
.dogs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.cards-grid .card p {
    color: var(--color-text);
}

.card,
.fee-card,
.contact-form {
    padding: 1.2rem;
}

.dog-card-content {
    padding: 1rem;
}

.dog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.process-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: process;
}

.process-list li {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 1rem;
}

.process-list li h3::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero) ' ';
    color: var(--color-primary);
}

.mission-title {
    color: var(--color-primary);
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.25rem;
    text-align: center;
    width: 75%;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--color-text);
}

.mission h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center !important;
}

.mission .card p {
    text-align: center !important;
}

.mission-icon {
    width: 80px;
    height: 80px;
    padding: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    display: block;
    margin: 0 auto 1rem;
    box-sizing: border-box;
}

.mission-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.fee-card {
    background: linear-gradient(150deg, #fff7d8, #ffffff);
}

.fee-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: var(--color-dark);
}

.fee-value {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1;
    margin: 0.4rem 0 0.8rem;
}

.section.faq {
    background: #F5F5F5;
}

.faq-title {
    color: var(--color-primary);
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.faq-subtitle {
    font-size: 1.25rem;
    text-align: center;
    width: 75%;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0 1.5rem;
}

.faq-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(31, 39, 54, 0.12);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    background: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    color: var(--color-dark);
}

.faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 0.9rem;
    height: 0.9rem;
    margin-left: 1rem;
    font-size: 0;
    color: transparent;
    transition: transform 0.25s ease;
}

.faq-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0.55rem;
    height: 0.55rem;
    margin: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: var(--color-primary);
    transform: rotate(45deg);
    transform-origin: center;
}

.faq-item.is-open .faq-icon,
.faq-icon.is-open {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 0.75rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 680px) {
    .hero-section {
        min-height: 520px;
    }
    .hero-content {
        padding: 80px 0;
    }
    .hero-text {
        font-size: 1.05rem;
    }
    .section {
        padding: 3.5rem 0;
    }
    .cards-grid,
    .process-list,
    .dogs-grid {
        grid-template-columns: 1fr;
    }
}


/* Team Section */

.team {
    background: #F5F5F5;
    padding: 5rem 0;
}

.section-title {
    color: var(--color-primary);
    text-align: center;
    font-family: Fredoka, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.25rem;
    text-align: center;
    width: 75%;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.member-role {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Team Avatar Bilder */

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Team Aufmacher Bild */

.team-hero-image {
    width: 100%;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.team-banner-img {
    width: 100%;
    height: auto;
    display: block;
}


/* ====================================
   NEWSLETTER BANNER - NEUE KLASSEN
   ==================================== */

.newsletter-banner {
    background: #D1A000;
    padding: 48px 0;
}

.newsletter-banner .container {
    text-align: center;
}

.nl-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-align: center;
}

.nl-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-align: center;
}

.nl-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.nl-input {
    width: 317px;
    height: 48px;
    padding: 12px 16px;
    border: none;
    outline: none;
    border-radius: 10px 0 0 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #0A0A0A;
    background: #FFFFFF;
}

.nl-btn {
    background: #FFFFFF;
    color: #D1A000;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 0 10px 10px 0;
    height: 48px;
    cursor: pointer;
    transition: background 0.2s;
}

.nl-btn:hover {
    background: #F5F5F5;
}

@media (max-width: 680px) {
    .nl-form {
        flex-direction: column;
        gap: 12px;
    }
    .nl-input {
        width: 100%;
        max-width: 317px;
        border-radius: 10px;
    }
    .nl-btn {
        width: 100%;
        max-width: 317px;
        border-radius: 10px;
    }
}

.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background-color: #D1A000 !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    font-size: 20px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: transform 0.2s !important;
}

.social-link:first-child {
    font-family: "Fredoka", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
}

.social-link:hover {
    transform: scale(1.1) !important;
    background-color: #B89400 !important;
}


/* ============================================
   FOOTER - Alles neu
   ============================================ */

.site-footer {
    background: #FFFFFF !important;
    padding: 60px 20px 30px !important;
    border-top: 1px solid #E5E5E5 !important;
}

.site-footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.footer-brand h3 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 24px !important;
    color: #353F52 !important;
    margin: 0 0 15px 0 !important;
}

.footer-brand p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px !important;
    color: #353F52 !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
}


/* SOCIAL ICONS */

.footer-social {
    display: flex !important;
    gap: 12px !important;
}

.social-icon {
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    background: #D1A000 !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 44px !important;
    color: #FFFFFF !important;
    font-size: 20px !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

.social-icon:hover {
    background: #B89400 !important;
    transform: scale(1.05) !important;
}


/* Links Spalten */

.footer-links h4 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 18px !important;
    color: #353F52 !important;
    margin: 0 0 15px 0 !important;
}

.footer-links ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin: 0 0 8px 0 !important;
}

.footer-links a {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: #353F52 !important;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: #D1A000 !important;
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid #E5E5E5 !important;
    padding-top: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.footer-bottom p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: #353F52 !important;
    margin: 0 !important;
}


/* Responsive */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .footer-brand {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================
   FOOTER SOCIAL ICONS - Vereinfachte SVGs
   ============================================ */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #D1A000;
    border-radius: 50%;
    text-decoration: none;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-social a:hover {
    background: #B89400;
}


/* ============================================
   TEAM GRID - 3-spaltig und 2-spaltig
   ============================================ */


/* Beide Grids */

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}


/* 3-spaltiges Grid */

.team-grid-3 {
    margin-bottom: 3rem;
}

.team-grid-3 .team-member {
    width: calc(33.333% - 1.33rem);
    max-width: none;
    text-align: center;
}


/* 2-spaltiges Grid - zentriert */

.team-grid-2 {
    justify-content: center;
}

.team-grid-2 .team-member {
    width: calc(50% - 1rem);
    max-width: none;
    text-align: center;
}


/* Responsive */

@media (max-width: 768px) {
    .team-grid-3 .team-member,
    .team-grid-2 .team-member {
        width: 100%;
    }
}


/* ============================================
   TEAM AVATAR - Viereckige Bilder
   ============================================ */

.member-avatar {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    /* KEIN goldener border mehr */
    border: none !important;
}

.member-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-grid-3 .member-avatar {
    aspect-ratio: auto;
    height: 300px;
}

.team-grid-2 .member-avatar {
    aspect-ratio: auto;
    height: 450px;
}

.member-avatar .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #D1A000;
    color: #FFFFFF;
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 500;
}


/* MOBILE NAVIGATION (Responsive) */

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .site-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 1rem;
        border-bottom: 1px solid rgba(53, 63, 82, 0.08);
        display: none;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .site-nav.is-open {
        display: flex;
    }
    .site-nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }
    .site-nav a {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(53, 63, 82, 0.1);
    }
    .btn-nav-outline {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }
}


/* HAMBURGER MENU ICON */

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}


/* Mobile button styling */

.nav-toggle {
    padding: 1rem 0.75rem;
}

/* ====================================
   GLOBAL SECTION INTRO - Mehrfach verwendbar
   ==================================== */

.section-intro {
    padding: 96px 0 40px 0;
    text-align: center;
    background: #FFFFFF;
}

.section-intro h2 {
    color: #D4A017;
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
}

.section-intro p {
    color: #1F2736;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .section-intro {
        padding: 64px 0 32px 0;
    }
    
    .section-intro h2 {
        font-size: 36px;
    }
    
    .section-intro p {
        font-size: 18px;
        padding: 0 20px;
    }
}
