/* Font Face Definitions */
@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

/* Prevent layout shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent layout shift for specific elements */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo {
    display: flex;
    align-items: center;
}

body {
    font-family: 'Geist', 'Poppins', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

/* Offset for fixed navbar */
#features,
#benefits,
#story,
#contact {
    scroll-margin-top: 100px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo a {
    text-decoration: none;
    display: inline-block;
}

.nav-logo .logo-img {
    height: 120px;
    max-width: 400px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover .logo-img {
    opacity: 0.8;
}

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

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000000;
}

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

.social-cta {
    margin-top: 0;
    text-align: left;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #db0031;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0;
    background-color: #f8f9fa;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    color: white;
    background-color: #db0031;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 0, 49, 0.3);
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #db0031 0%, #a00020 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(219, 0, 49, 0.3);
    border-radius: 30px;
    padding: 12px 40px;
    min-height: 48px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 0, 49, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #000000;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #db0031;
    color: #db0031;
}

.btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e5f5fc 0%, #f0f8ff 100%);
    margin-top:10rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 8rem 0px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: bottom
}

.hero-content {
    text-align: left;
    padding-bottom:0px;
   
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    text-align: left;
}

.cta-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 1rem;
    color: #000000;
    margin-top: 1rem;
    font-style: italic;
}

.hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
    margin: 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.problem-text,
.solution-text {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 8px solid;
}

.problem-text {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left-color: #db0031;
}

.solution-text {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left-color: #10b981;
}

.problem-text:hover,
.solution-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-text h3,
.solution-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.problem-text p,
.solution-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
}

.collaboration-section {
    text-align: center;
    margin: 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
}

.collaboration-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.collaboration-section p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-for-practices {
    margin: 0;
    padding: 4rem 0;
}

.benefits-for-practices h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #db0031;
}

.benefit-number {
    background: linear-gradient(135deg, #db0031 0%, #a00020 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(219, 0, 49, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number {
    transform: scale(1.1);
}

.benefit-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 0.5rem;
}

.benefit-content strong {
    color: #db0031;
    font-weight: 700;
}

/* Personal Story Section */
.personal-story {
    margin: 0;
    padding: 6rem 0;
    background: #f8f9fa;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.personal-story .container {
    position: relative;
    z-index: 1;
}

.personal-story h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #db0031;
    text-align: center;
    margin-bottom: 3rem;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #db0031;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1rem;
    text-align: left;
   padding-right: 20px;
}

.story-content strong {
    color: #db0031;
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
    text-align: left;
}

/* Steffi Introduction - Full width */
.steffi-intro {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    
}

.steffi-photo {
    flex-shrink: 0;
}

.steffi-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #db0031;
    box-shadow: 0 8px 20px rgba(219, 0, 49, 0.2);
}

.steffi-text {
    flex: 1;
}

.steffi-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    font-style: italic;
}

/* Wishes Section */
.wishes-section {
    margin: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #e5f5fc 0%, #f0f8ff 100%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 0;
    border-radius: 0;
}

.wishes-section .container {
    position: relative;
    z-index: 1;
}

.wishes-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.wishes-intro {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.wish-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wish-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #db0031;
}

.wish-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wish-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.wish-item p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

.wishes-cta {
    background: white;
    color: #000000;
    padding: 3rem;
    border-radius: 1rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wishes-cta p {
    font-size: 1.2rem;
    margin-bottom: 0rem;
    line-height: 1.7;
}

.wishes-cta strong {
    color: #db0031;
    font-weight: 700;
}

.wishes-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.wishes-buttons .btn {
    min-width: 200px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e5f5fc 0%, #f0f8ff 100%);
    color: #000000;
    text-align: center;
    padding: 6rem 0;
    margin: 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.cta-content p {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #db0031;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0;
    background-color: #f8f9fa;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    color: white;
    background-color: #db0031;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 0, 49, 0.3);
}

.social-links a img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #f8f9fa;
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #000000;
    transition: color 0.3s ease;
}

.close:hover {
    color: #db0031;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-body p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.form-group input {
    padding: 0.6rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #db0031;
    box-shadow: 0 0 0 3px rgba(219, 0, 49, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkbox-label a {
    color: #db0031;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.required-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Page Content Styles */
.page-content {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.back-button-container {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.page-header {
    text-align: left;
    margin-bottom: 4rem;
   margin-top:3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    
}

.help-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.help-section {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #db0031;
}

.help-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.help-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 0.5rem 0;
}

.help-content h3:first-child {
    margin-top: 0;
}

.help-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}

.help-content a {
    color: #db0031;
    text-decoration: none;
    font-weight: 600;
}

.help-content a:hover {
    text-decoration: underline;
}

.contact-support {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-support h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-support p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Styles */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #db0031;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin: 0;
}

.faq-item a {
    color: #db0031;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin: 2rem 0 1rem 0;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1.5rem;
}

.contact-email {
    margin: 1.5rem 0;
}

.contact-email .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.social-contact {
    margin: 1.5rem 0;
}

.social-contact .btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

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

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

.contact-form .form-group label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #db0031;
    box-shadow: 0 0 0 3px rgba(219, 0, 49, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.response-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.response-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.response-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin: 2rem 0 1rem 0;
}

.response-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}

.response-info ul {
    list-style: none;
    padding: 0;
}

.response-info ul li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.response-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Status Page Styles */
.status-container {
    max-width: 1000px;
    margin: 0 auto;
}

.status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.status-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid #db0031;
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.status-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #db0031;
    margin-bottom: 1rem;
}

.status-subtext {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #db0031 0%, #a00020 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.development-timeline {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.development-timeline h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.timeline-item.completed .timeline-marker {
    background: #10b981;
    border: 3px solid #10b981;
}

.timeline-item.in-progress .timeline-marker {
    background: #db0031;
    border: 3px solid #db0031;
    animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
    background: #e9ecef;
    border: 3px solid #6b7280;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(219, 0, 49, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(219, 0, 49, 0); }
    100% { box-shadow: 0 0 0 0 rgba(219, 0, 49, 0); }
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p:last-child {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.feature-status {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.feature-status h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #db0031;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.feature-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-status-badge.completed {
    background: #d1fae5;
    color: #065f46;
}

.feature-status-badge.in-progress {
    background: #fef3c7;
    color: #92400e;
}

.feature-status-badge.upcoming {
    background: #e5e7eb;
    color: #374151;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.beta-signup {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.beta-signup h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.beta-signup p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
}

.beta-requirements {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.beta-requirements h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
}

.beta-requirements ul {
    list-style: none;
    padding: 0;
}

.beta-requirements ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.beta-requirements ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
   
    text-align: left;
}

.legal-content h1 {
    text-align: left;
}

.legal-content h2 {
    text-align: left;
}

.legal-content h3 {
    text-align: left;
}

.legal-content h4 {
    text-align: left;
}

.legal-content p {
    text-align: left;
}

.legal-content ul {
    text-align: left;
}

.legal-content li {
    text-align: left;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 1rem 0;
    text-align: left;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-box a {
    color: #db0031;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Phone Links */
a[href^="tel:"] {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a[href^="tel:"]:hover {
    color: #db0031;
    text-decoration: underline;
}

/* Fax Links */
a[href^="tel:+4971839316802"] {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a[href^="tel:+4971839316802"]:hover {
    color: #db0031;
    text-decoration: underline;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.success-details p {
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-menu-mobile.active {
    display: flex;
}

.nav-menu-mobile .nav-link {
    padding: 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
    font-size: 1.1rem;
}

.nav-menu-mobile .nav-link:last-child {
    border-bottom: none;
}

/* Additional mobile modal styles for very small screens */
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 96vh;
        border-radius: 0.5rem;
    }
    
    .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .waitlist-form {
        gap: 0.5rem;
    }
    
    .form-group input {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero { 
        margin-top:2rem;
    }
    .nav-menu {
        display: none;
    }

    .nav-right {
        gap: 0.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 8rem 20px 0;
    }
    
    .hero-content {
        width: 100%;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding-top:50px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image {
        align-items: center;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .story-content p {
        text-align: left;
    }
    
    .story-content strong {
        text-align: left;
    }
    
    .steffi-intro {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    
    .wishes-grid {
        grid-template-columns: 1fr;
    }
    
    .wishes-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wishes-buttons .btn {
        min-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    /* Responsive styles for new pages */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .status-overview {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-marker {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .legal-content {
      
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-buttons .btn {
        min-width: 200px;
    }
    
    .help-sections {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .steffi-img {
        width: 120px;
        height: 120px;
    }
}