/*
Theme Name: Wayne AI
Theme URI: https://wayne-ai.com
Description: Wayne AI website theme - Unleashing the future of humanity through conscious AI partnership. Features a clean, professional design focused on human-centric AI development and research.
Author: Wayne AI LLC
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wayne-ai
Tags: ai, technology, research, clean, professional, responsive
*/

/* Wayne AI Main Stylesheet */

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F7F5F3;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1B5B5A 0%, #2C7A78 100%);
    color: #F7F5F3;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 91, 90, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #B87333;
}

.logo-img {
    height: 40px; /* Adjust height as needed */
    width: auto;
    transition: opacity 0.3s ease;
}

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

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

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

.nav-links a {
    color: #F7F5F3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #B87333;
}
/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: relative;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #F7F5F3;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1B5B5A;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 1rem 0;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #F7F5F3;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: rgba(184, 115, 51, 0.2);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
    
    .desktop-nav {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1B5B5A 0%, #2C7A78 50%, #1B5B5A 100%);
    color: #F7F5F3;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(184,115,51,0.1)"/><circle cx="800" cy="300" r="3" fill="rgba(184,115,51,0.1)"/><circle cx="400" cy="600" r="2" fill="rgba(184,115,51,0.1)"/><circle cx="700" cy="800" r="3" fill="rgba(184,115,51,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: normal;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #B87333;
    color: #F7F5F3;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #B87333;
}

.cta-button:hover {
    background: transparent;
    color: #B87333;
    transform: translateY(-1px);
}

.path-button, .method-button {
    display: inline-block;
    background: #B87333;
    color: #F7F5F3;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #B87333;
}

.path-button:hover, .method-button:hover {
    background: transparent;
    color: #B87333;
    transform: translateY(-1px);
}

.form-button {
    display: inline-block;
    background: #1B5B5A;
    color: #F7F5F3;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1B5B5A;
    width: 100%;
    text-align: center;
}

.form-button:hover {
    background: transparent;
    color: #1B5B5A;
}

.whitepaper-button {
    display: inline-block;
    background: #1B5B5A;
    color: #F7F5F3;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1B5B5A;
}

.whitepaper-button:hover {
    background: transparent;
    color: #1B5B5A;
    transform: translateY(-1px);
}

/* Three Pillars / Paths Section */
.pillars, .contribution-paths {
    padding: 80px 0;
    background: #F7F5F3;
}

.pillars h2, .contribution-paths h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5B5A;
    margin-bottom: 3rem;
}

.paths-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid, .paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.pillar, .path {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27, 91, 90, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #B87333;
}

.pillar:hover, .path:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 91, 90, 0.15);
}

.pillar-icon, .path-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
	 padding: 1rem; /* Adds padding inside the container */
}

.pillar h3, .path h3 {
    font-size: 1.8rem;
    color: #1B5B5A;
    margin-bottom: 1rem;
}

.pillar p, .path p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}
.pillar-icon img {
    width: auto;
    height: 80px; /* Set a fixed height */
    max-width: 100%;
    object-fit: contain; /* Maintains aspect ratio */
    margin: 1rem 0; /* Adds vertical margin around images */
}

/* Contact Page Specific */
.contribution-paths.contact-page {
    padding: 60px 0 40px;
}

.contribution-paths.contact-page h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contribution-paths.contact-page .paths-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contribution-paths.contact-page .paths-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contribution-paths.contact-page .path {
    padding: 1.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(27, 91, 90, 0.08);
    border-top: 3px solid #B87333;
}

.contribution-paths.contact-page .path:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 91, 90, 0.12);
}

.contribution-paths.contact-page .path h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contribution-paths.contact-page .path p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Add more space between text and buttons in contribution paths */
.contribution-paths .path p {
    margin-bottom: 2.5rem; /* Increase from default margin */
}

/* Alternative: Add margin to the top of buttons */
.contribution-paths .path-button {
    margin-top: 1.5rem;
}

/* Adjust spacing without icons */
.contribution-paths .path h3 {
    margin-top: 0; /* Remove top margin since no icon above */
}

/* Contact Form 7 Styling */
.wpcf7-form {
    width: 100%;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.wpcf7-form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: #1B5B5A;
}

.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-submit {
    background: #1B5B5A !important;
    color: #F7F5F3 !important;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1B5B5A !important;
    font-family: 'Georgia', serif;
}

.wpcf7-submit:hover {
    background: transparent !important;
    color: #1B5B5A !important;
}

/* Form labels */
.wpcf7 label {
    display: block;
    font-weight: bold;
    color: #1B5B5A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Two-column layout for name fields */
.form-row-cf7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Response messages */
.wpcf7-response-output {
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 8px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .form-row-cf7 {
        grid-template-columns: 1fr;
    }
}

/* Vision Section */
.vision {
    background: linear-gradient(135deg, #2C7A78 0%, #1B5B5A 100%);
    color: #F7F5F3;
    padding: 80px 0;
    text-align: center;
}

.vision h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.vision-highlight {
    color: #B87333;
    font-size: 1.6rem;
    font-weight: bold;
    font-style: italic;
    display: block;
    margin: 2rem 0;
    text-align: center;
}

/* Philosophy and Core Content */
.core-philosophy, .simple-explanation, .research-foundation, .our-approach, .why-now {
    padding: 80px 0;
    background: #F7F5F3;
}

.core-philosophy h2, .simple-explanation h2, .research-foundation h2, .our-approach h2, .why-now h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5B5A;
    margin-bottom: 3rem;
}

.philosophy-content, .explanation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    color: #B87333;
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    display: block;
    margin: 2.5rem 0;
    text-align: center;
    line-height: 1.4;
}

.philosophy-text, .explanation-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2C2C2C;
    margin-bottom: 2rem;
}

.big-idea {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(27, 91, 90, 0.1);
    border-top: 4px solid #B87333;
    margin: 3rem 0;
}

.big-idea h3 {
    color: #1B5B5A;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.big-idea p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
}

/* Research Journey / How It Works Steps */
.research-journey, .how-it-works {
    background: white;
    padding: 80px 0;
}

.research-journey h2, .how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5B5A;
    margin-bottom: 3rem;
}

.journey-grid, .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-item, .step {
    text-align: center;
    padding: 2rem;
}

.journey-number, .step-number {
    width: 60px;
    height: 60px;
    background: #B87333;
    color: #F7F5F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.journey-item h3, .step h3 {
    font-size: 1.6rem;
    color: #1B5B5A;
    margin-bottom: 1rem;
}

.journey-item p, .step p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Cognitive Partnership */
.cognitive-partnership, .what-makes-special {
    background: linear-gradient(135deg, #2C7A78 0%, #1B5B5A 100%);
    color: #F7F5F3;
    padding: 80px 0;
}

.cognitive-partnership h2, .what-makes-special h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F7F5F3;
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.feature, .special-feature {
    background: rgba(247, 245, 243, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.feature h3, .special-feature h3 {
    color: #B87333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature p, .special-feature p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.partnership-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

/* Research Foundation */
.foundation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.foundation-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(27, 91, 90, 0.1);
    border-top: 4px solid #B87333;
}

.foundation-item h3 {
    color: #1B5B5A;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.foundation-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.foundation-item ul {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.foundation-item li {
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #B87333;
    font-weight: bold;
}

/* Why Now / Urgency */
.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.urgency-point {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(27, 91, 90, 0.1);
    border-left: 5px solid #B87333;
}

.urgency-point h3 {
    color: #1B5B5A;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.urgency-point p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Philosophy Distinction */
.philosophy-distinction {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(27, 91, 90, 0.1);
    border-top: 4px solid #B87333;
    text-align: center;
}

.philosophy-distinction h3 {
    color: #1B5B5A;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Approach Comparison */
.approach-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
}

.approach-item h3 {
    color: #1B5B5A;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.approach-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.vs-indicator {
    color: #B87333;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 1rem;
    flex-shrink: 0;
}

.approach-highlight {
    background: #B87333;
    color: #F7F5F3;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: bold;
}

/* Privacy Section */
.privacy-section {
    background: #F7F5F3;
    padding: 80px 0;
}

.privacy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5B5A;
    margin-bottom: 3rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(27, 91, 90, 0.1);
    border-top: 3px solid #B87333;
}

.privacy-item h3 {
    color: #1B5B5A;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Tech Savvy Section */
.tech-savvy {
    background: white;
    padding: 80px 0;
}

.tech-savvy-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tech-savvy h2 {
    font-size: 2.2rem;
    color: #1B5B5A;
    margin-bottom: 2rem;
}

.tech-savvy p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 80px 0;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5B5A;
    margin-bottom: 1rem;
}

.contact-form .form-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #F7F5F3;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(27, 91, 90, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #1B5B5A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B5B5A;
}

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

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

.submit-button {
    background: #1B5B5A;
    color: #F7F5F3;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1B5B5A;
    font-family: 'Georgia', serif;
}

.submit-button:hover {
    background: transparent;
    color: #1B5B5A;
}

/* Contact Forms Section */
.contact-forms {
    background: #F7F5F3;
    padding: 80px 0;
}

.contact-forms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5B5A;
    margin-bottom: 3rem;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(27, 91, 90, 0.1);
    text-align: center;
}

.form-card h3 {
    font-size: 1.6rem;
    color: #1B5B5A;
    margin-bottom: 1.5rem;
}

.form-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Social Media */
.social-media {
    background: linear-gradient(135deg, #2C7A78 0%, #1B5B5A 100%);
    color: #F7F5F3;
    padding: 80px 0;
    text-align: center;
}

.social-media h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F7F5F3;
}

.social-media .social-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(184, 115, 51, 0.2);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #F7F5F3;
    min-width: 150px;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(184, 115, 51, 0.3);
    border-color: #B87333;
    transform: translateY(-3px);
    color: #F7F5F3;
}

.social-link .social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #B87333;
}

.social-link h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.social-link p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Sections */
.vision-cta, .process-cta {
    background: linear-gradient(135deg, #1B5B5A 0%, #2C7A78 100%);
    color: #F7F5F3;
    padding: 80px 0;
    text-align: center;
}

.vision-cta h2, .process-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F7F5F3;
}

.vision-cta p, .process-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #2C2C2C;
    color: #F7F5F3;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-section h3 {
    color: #B87333;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    color: #B87333;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #F7F5F3;
    transform: translateY(-2px);
}

/* Force 2x2 grid layout on medium screens to avoid orphans */
@media (min-width: 769px) and (max-width: 1200px) {
    .pillars-grid, .paths-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .contribution-paths.contact-page .paths-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .pillars-grid,
    .paths-grid,
    .journey-grid,
    .steps-grid,
    .partnership-features,
    .special-features,
    .foundation-grid,
    .privacy-grid,
    .forms-grid {
        grid-template-columns: 1fr;
    }
    
    .contribution-paths.contact-page .paths-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        min-width: 130px;
        padding: 1.5rem;
    }
    
    .approach-grid {
        flex-direction: column;
    }
    
    .vs-indicator {
        margin: 1rem 0;
        transform: rotate(90deg);
    }
    
    .philosophy-quote {
        font-size: 1.4rem;
    }
    
    .explanation-text {
        font-size: 1.1rem;
    }
}