/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #722e6b;
    --primary-dark: #5a2456;
    --primary-light: #8a3a82;
    --secondary-color: #a8559f;
    --accent-color: #c77bb8;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    position: relative;
    overflow-x: hidden;
}

/* Watermark Logo Background */
.watermark-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image: url('../images/logo.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 800px 800px;
    transform: translateZ(0);
    will-change: transform;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.flash-success {
    background-color: var(--success-color);
    color: white;
}

.flash-error {
    background-color: var(--error-color);
    color: white;
}

.flash-info {
    background-color: var(--info-color);
    color: white;
}

.flash-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(114, 46, 107, 0.4) 0%, rgba(90, 36, 86, 0.4) 100%);
    color: #000000;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(1px);
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #000000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-message {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
    backdrop-filter: blur(0.5px);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #000000;
}

.hero-message p {
    color: #000000;
    font-weight: 500;
}

.highlight {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #000000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero .mission-box {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: #000000;
    backdrop-filter: blur(0.5px);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.hero .mission-box h2 {
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero .mission-box p {
    color: #000000;
    font-weight: 500;
}

.hero .mission-box p strong {
    color: #000000;
    font-weight: 700;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--bg-light);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #722e6b;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #722e6b;
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Infographics Section */
.infographics-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.infographics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.infographic-card {
    background: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(114, 46, 107, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.infographic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(114, 46, 107, 0.2);
}

.infographic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.infographic-image {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infographic-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 100%;
    object-fit: contain;
}

.image-placeholder {
    padding: 3rem;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 10px;
    text-align: center;
    border: 2px dashed rgba(114, 46, 107, 0.3);
}

.image-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #000000;
    margin: 0.5rem 0;
}

.placeholder-note {
    font-size: 1rem !important;
    color: #722e6b !important;
    font-style: italic;
    font-weight: 500;
}

.infographic-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #000000;
    line-height: 1.6;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.35);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 1.1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.6rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
}

.subtitle {
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.content-box.no-background {
    background: transparent;
    box-shadow: none;
    padding: 1.5rem 0;
}

.content-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Founder Profile */
.founder-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.founder-title {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.story-list {
    list-style: none;
    padding-left: 1.5rem;
}

.story-list li {
    padding: 0.5rem 0;
    position: relative;
}

.story-list li:before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-section .mission-box, .vision-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}

.vision-list {
    list-style: none;
    padding-left: 0;
}

.vision-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.vision-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.values-section {
    margin-top: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* How It Works */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-box {
    background: rgba(248, 249, 250, 0.95);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Donate Page */
.donate-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.donation-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.donation-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.donation-list li:before {
    content: "❤";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.donation-message {
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.donation-box {
    background: rgba(248, 249, 250, 0.95);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.gofundme-highlight {
    background: linear-gradient(135deg, rgba(114, 46, 107, 0.15) 0%, rgba(90, 36, 86, 0.15) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.gofundme-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gofundme-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gofundme-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-gofundme {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(114, 46, 107, 0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0;
}

.btn-gofundme:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(114, 46, 107, 0.6);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.gofundme-link {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-weight: 600;
    word-break: break-all;
}

.note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Apply Form */
.form-info {
    background: rgba(248, 249, 250, 0.95);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-info ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.form-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.form-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.encouragement {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.assistance-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: var(--error-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* About Page with Photo */
.about-intro {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.founder-image-small {
    flex-shrink: 0;
    width: 200px;
}

.founder-image-small img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-intro-content {
    flex: 1;
}

/* Contact Page */
.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.social-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.donation-links {
    margin: 1.5rem 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section .social-link {
    color: white;
}

.footer-section .social-link:hover {
    color: var(--accent-color);
}

.tagline {
    font-style: italic;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.admin-login-link {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    font-weight: normal;
    text-transform: lowercase;
}

.admin-login-link:hover {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 1000;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 20px;
        width: 100%;
    }
    
    .nav-menu .btn-primary {
        margin: 0.5rem 20px;
        text-align: center;
        display: inline-block;
        width: calc(100% - 40px);
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-message {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .highlight {
        font-size: 1.3rem;
    }
    
    .hero .mission-box {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .hero .mission-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .feature-card {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-profile {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        flex-direction: column;
    }
    
    .founder-image-small {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .infographics-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .infographic-image {
        min-height: 250px;
    }
    
    .gofundme-highlight {
        padding: 2rem 1.5rem;
    }
    
    .gofundme-icon {
        font-size: 3rem;
    }
    
    .gofundme-highlight h3 {
        font-size: 1.8rem;
    }
    
    .gofundme-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-gofundme {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .assistance-form {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-actions .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .admin-login-link {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
        font-size: 0.65rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .infographic-card {
        padding: 1rem;
    }
    
    .infographic-card h3 {
        font-size: 1.5rem;
    }
    
    .watermark-logo {
        background-size: 400px 400px;
    }
}

