:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #084237;
    --accent-light: rgba(8, 66, 55, 0.05);
    --accent-lighter: rgba(8, 66, 55, 0.02);
    --text-color: #000000;
    --light-text: #666666;
    --background-color: #ffffff;
    --section-bg: #f8f8f8;
    --border-radius: 0px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    color: var(--text-color);
    background-color: var(--background-color);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        var(--background-color) 0%,
        var(--accent-lighter) 25%,
        var(--accent-light) 50%,
        var(--accent-lighter) 75%,
        var(--background-color) 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: -1;
    opacity: 0.8;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
nav {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background: white;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
}

.nav-links a:last-child {
    background-color: var(--accent-color);
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:last-child:hover {
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    background: var(--background-color);
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    max-width: 900px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 600px;
}

/* Buttons */
.cta-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--text-color);
}

/* Add styles for secondary CTA */
.cta-button.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-button.cta-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Problems Section */
.problems {
    min-height: 100vh;
    padding: 120px 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.problems .container {
    position: relative;
    z-index: 2;
}

.problems h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 80px;
    max-width: 800px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    border: 2px solid var(--accent-color);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.problem-card:hover::before {
    opacity: 0.02;
}

.problem-card * {
    position: relative;
    z-index: 2;
}

.problem-card i {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Solution Section */
.solution {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--text-color);
    color: white;
    position: relative;
    z-index: 1;
    background: transparent;
}

.solution h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 80px;
    max-width: 800px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.solution-card {
    padding: 40px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    opacity: 1;
}

.solution-card:hover {
    background: rgba(255,255,255,0.1);
}

/* Add a subtle overlay to dark sections to maintain contrast */
.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    opacity: 0.97;
    z-index: -1;
}

/* Vision Section */
.vision {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--background-color);
    display: flex;
    align-items: center;
}

.vision blockquote {
    font-size: 4rem;
    line-height: 1.1;
    max-width: 1000px;
    margin: 0;
    font-weight: 700;
    opacity: 1;
}

/* Process Section */
.process {
    min-height: 100vh;
    padding: 80px 0;
    background: var(--section-bg);
    position: relative;
}

.process h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 80px;
    opacity: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    position: relative;
    opacity: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-color);
    opacity: 1;
}

/* Sustainability Section */
.sustainability {
    min-height: 100vh;
    padding: 0 0 80px 0; 
    background-color: var(--section-bg);
    position: relative;
}

.sustainability h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 1;
}

.sustainability-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 60px;
    max-width: 800px;
    opacity: 1;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.support-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    opacity: 1;
}

.support-card:hover {
    transform: translateY(-10px);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.support-card p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.support-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.support-button:hover {
    background-color: var(--text-color);
}

/* Update Final CTA section */
.final-cta {
    padding: 120px 0;
    background: var(--text-color);
    color: white;
    position: relative;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin: 30px 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1,
    .problems h2,
    .solution h2,
    .vision blockquote,
    .process h2,
    .sustainability h2 {
        font-size: 3rem;
    }
    
    .problems-grid,
    .solution-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sustainability-text {
        font-size: 1.2rem;
    }

    .problems h2 {
        font-size: 3rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1,
    .problems h2,
    .solution h2,
    .vision blockquote,
    .process h2,
    .sustainability h2 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-group,
    .cta-buttons {
        flex-direction: column;
    }
    
    .support-card {
        padding: 30px;
    }
    
    .support-card h3 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 20px;
    }

    .problems,
    .solution,
    .vision,
    .process,
    .sustainability,
    .final-cta {
        padding: 80px 0;
    }

    .problems h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .problem-card {
        padding: 30px;
    }
}

/* Animation classes */
.animate-in {
    transform: translateY(0) !important;
}

/* Hover effects */
.solution-card:hover,
.support-card:hover {
    transform: translateY(-10px);
}

.problem-card:hover {
    transform: scale(1.02);
}

/* Ensure content visibility */
.vision blockquote,
.process h2,
.sustainability h2,
.sustainability-text {
    opacity: 1;
}

.about {
    min-height: 100vh;
    padding: 120px 0;
    background-color: var(--background-color);
    position: relative;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-content {
    max-width: 600px;
}

.about-intro-content h2 {
    margin-bottom: 30px;
}

.about-intro-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 20px 0;
}

.about-intro .team-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.team-member {
    padding: 40px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.team-member h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-member .role {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.team-member p {
    margin: 20px 0;
    line-height: 1.6;
}

.team-member blockquote {
    font-style: italic;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.together-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.together-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.together-section ul {
    text-align: left;
    list-style-type: none;
    margin: 30px 0;
}

.together-section li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.together-section li:before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.together-section blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 40px 0;
}

@media (max-width: 1024px) {
    .team-members {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-content {
        max-width: 100%;
    }
} 