:root {
    --primary: #FF0000;
    --primary-dark: #CC0000;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --background-light: #FFFFFF;
    --background-dark: #000000;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    background: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    background: var(--background-dark);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1.1rem;
}

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

.container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 2rem;
    margin-top: 4rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    opacity: 0.9;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-dark);
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 4rem 2rem;
    border-radius: 1rem;
    margin: 4rem 0;
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .container {
        margin-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* Success Stories Page Styles */
.success-stories {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.success-stories h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.story-card {
    background: var(--background-dark);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
}

.story-names {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.story-date {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
}

.story-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-quote {
    font-style: italic;
    color: var(--primary);
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    background: rgba(255, 0, 0, 0.1);
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-dark);
    margin-top: 4rem;
    border-radius: 1rem;
    color: var(--text-light);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .success-stories {
        padding: 2rem 1rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-names {
        font-size: 1.25rem;
    }
    
    .story-quote {
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* Survey Page Styles */
.survey-container {
    max-width: 48rem;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.survey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.survey-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.survey-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
}

input, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 2rem;
}

button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
} 