/* Local Google Fonts */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url('./fonts/open-sans-v43-latin-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  src: url('./fonts/open-sans-v43-latin-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url('./fonts/open-sans-v43-latin-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C3E50;
    --secondary: #3498DB;
    --accent: #E74C3C;
    --success: #27AE60;
    --text: #34495E;
    --text-light: #5A6C7D;
    --background: #FFFFFF;
    --background-gray: #F8F9FA;
    --border: #E5E7EB;
    --font-family: 'Open Sans', 'Lato', 'Source Sans Pro', sans-serif;
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --section-padding-mobile: 3rem 0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-light { color: var(--text-light); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-success { background-color: var(--success); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--border);
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #1a252f;
}

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

.btn-secondary:hover {
    background-color: #2980b9;
}

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

.btn-accent:hover {
    background-color: #c0392b;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.portrait-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.portrait-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}

.hero-card {
    position: relative;
    margin-top: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: block;
    text-align: left;
    border: 2px solid #000000;
}

.hero-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-card-number {
    font-weight: 600;
    color: var(--primary);
}

.hero-card-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--background-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.services-row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.services-row .service-card {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #000000 !important;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.service-subtitle {
    color: var(--secondary);
    font-weight: 600;
}

.service-description {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    color: var(--secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.feature-description {
    color: var(--text-light);
}

.service-pricing {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--background-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    justify-content: center;
    justify-items: center;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #000000;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-business {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars .lucide {
    color: #fbbf24;
    fill: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-review {
    color: var(--text-light);
    line-height: 1.6;
}

/* Booking */
.booking {
    padding: var(--section-padding);
    background: white;
}

.booking-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 2px solid #000000;
}

.calendly-widget {
    background: var(--background-gray);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-height: 750px;
    overflow: hidden;
}

/* MeterGo widget responsive container */
.meetergo-iframe {
    width: 100% !important;
    min-height: 700px !important;
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-info {
    text-align: center;
}

.contact-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #2980b9;
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background: var(--background-gray);
}

.faq-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #000000;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
}

.faq-item:first-child {
    padding-top: 0;
}

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

.faq-question {
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--secondary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Contact */
.contact {
    padding: var(--section-padding);
    background: white;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 2px solid #000000;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-submit {
    text-align: center;
}

.form-privacy {
    text-align: center;
}

.form-privacy p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid #000000;
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.content-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-card ul {
    list-style: disc;
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.content-card ul li {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Page Headers */
.section-page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    text-align: center;
}

.page-header-image {
    margin-bottom: 2rem;
    text-align: center;
}

.header-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Anpassungen für Header-Bilder */
@media (max-width: 768px) {
    .header-image {
        max-height: 200px;
        border-radius: 8px;
    }
    
    .page-header-image {
        margin-bottom: 1.5rem;
    }
}

.section-content {
    padding: var(--section-padding);
    background: white;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo .logo-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: var(--secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: white;
}

/* Media Queries */
@media (min-width: 640px) {
    .logo-subtitle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .contact-links {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: 1fr 2fr;
    }
    
    .portrait-img {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .portrait-img {
        width: 400px;
        height: 400px;
    }
    
    .hero-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu.show {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .services, .testimonials, .booking, .contact, .faq {
        padding: var(--section-padding-mobile);
    }
    
    /* Improved mobile container management */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Ensure meetergo widget uses full width on mobile */
    .meetergo-iframe {
        width: 100% !important;
        min-height: 650px !important;
        margin: 0 !important;
        border-radius: var(--radius-md);
    }
    
    /* Fix booking widget mobile display */
    .calendly-widget {
        padding: 0;
        min-height: 650px;
        margin: 0;
        border-radius: 0;
        background: transparent;
    }
    
    .booking-card {
        margin: 0;
        padding: 1rem;
        width: 100%;
        border-radius: var(--radius-lg);
    }
    
    /* Fix testimonial cards mobile display */
    .testimonial-card {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .testimonials-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    /* Fix service cards mobile display */
    .services-grid .service-card {
        margin: 0.5rem;
        width: calc(100% - 1rem);
        max-width: none !important;
        padding: 1.5rem;
    }
    
    /* Improve hero card positioning */
    .hero-card {
        position: relative;
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: 350px;
        left: auto;
        transform: none;
        padding: 1.25rem;
    }
    
    /* Prevent other content from touching edges */
    .contact-form-card, .faq-container {
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }
    
    /* Better mobile spacing for content cards */
    .content-card {
        margin: 0 0.5rem 1.5rem 0.5rem;
        width: calc(100% - 1rem);
        padding: 1.5rem;
    }
}

/* Intro Sections */
.intro-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0 auto;
}

.intro-section {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary);
}

.intro-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.intro-section p {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .intro-sections {
        grid-template-columns: 1fr 1fr;
    }
}