/* Remove site-main margin for this page */
#site-main {
    margin-top: 0 !important;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    padding: 50px 20px 60px;
}

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

.hero-header {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.4;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.hero-visual {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 500px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.hero-link {
    color: var(--bg-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.hero-link:hover {
    border-bottom-color: var(--bg-green);
}

.hero-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: var(--bg-green);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.btn-hero-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-icon {
    position: absolute;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 80px;
    left: -10px;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    right: -15px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 20px;
    background: #fff;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.steps-header p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    background: #f8faf8;
    border-color: #e0efe0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-green);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.step-card > p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-detail:last-child {
    margin-bottom: 0;
}

.detail-highlight {
    color: var(--bg-green);
    font-weight: 600;
    flex-shrink: 0;
}

/* Benefit items for mission section */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.benefit-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 20px;
    }

    .steps-header {
        margin-bottom: 40px;
    }

    .steps-header h2 {
        font-size: 28px;
    }

    .steps-header p {
        font-size: 16px;
    }

    .step-card {
        padding: 24px;
    }

    .step-icon {
        font-size: 40px;
    }

    .step-card h3 {
        font-size: 20px;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-green);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 100px 20px;
    background: #fafafa;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-image {
    flex: 1;
    max-width: 400px;
}

.mission-image img {
    width: 100%;
    /*height: 300px;*/
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    /*box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);*/
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mission-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background: #fff;
}

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

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.team-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Team Member Cards */
.team-member {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-green), #81c784);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.team-member:hover::before {
    opacity: 1;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdf8, #e8f5e8);
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

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

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.member-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.member-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: left;
    margin: 0;
}

.read-more-btn {
    color: var(--bg-green);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    border: none;
    background: none;
    padding: 0;
    font-size: inherit;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px 80px;
    }

    .hero-header {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 12px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 18px;
        text-align: center;
    }

    .hero-visual {
        margin-bottom: 40px;
    }

    .hero-image {
        max-width: 400px;
    }

    .hero-image-wrapper {
        transform: rotate(0deg);
    }

    .hero-image-wrapper img {
        height: 300px;
    }

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

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
        text-align: left;
    }

    .decoration-icon {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }

    .stats-section {
        padding: 60px 20px;
    }

    .stats-grid {
        gap: 32px;
    }

    .stat-number {
        font-size: 28px;
    }

    .mission-section {
        padding: 80px 20px;
    }

    .mission-content {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

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

    .mission-text p {
        text-align: left;
    }

    .mission-text h2 {
        font-size: 28px;
    }

    .team-section {
        padding: 80px 20px;
    }

    .team-title {
        font-size: 32px;
    }

    .team-subtitle {
        font-size: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .team-member {
        padding: 24px;
    }

    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .member-name {
        font-size: 22px;
    }

    .member-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 20px 70px;
    }

    .hero-header {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-visual {
        margin-bottom: 30px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image-wrapper img {
        height: 250px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-hero-primary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .decoration-icon {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-number {
        font-size: 24px;
    }

    .mission-text h2 {
        font-size: 24px;
    }

    .team-title {
        font-size: 28px;
    }

    .team-grid {
        gap: 24px;
    }

    .team-member {
        padding: 20px;
        border-radius: 16px;
    }
}

/* Mission & Vision specific styles */
.mission-goals .goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.mission-goals .goal-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-goals .goal-item > div h4 {
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
}

.mission-goals .goal-item > div p {
    margin: 0;
    line-height: 1.5;
    color: #666;
}

.values-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
}

.values-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 60px;
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.mission-content.reverse {
    flex-direction: row-reverse;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

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

.impact-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 8px;
}

.impact-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.mission-quote {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
}

.mission-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #5a7c65;
    font-weight: 500;
    margin: 0;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.mission-quote blockquote:before,
.mission-quote blockquote:after {
    content: '"';
    font-size: 1.5rem;
    color: #5a7c65;
    font-weight: 600;
}

.mission-quote blockquote:before {
    margin-right: 8px;
}

.mission-quote blockquote:after {
    margin-left: 8px;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--bg-green);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-green);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.2);
}

.btn-hero-secondary:hover {
    background: var(--bg-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    text-decoration: none;
}

/* FAQ Specific Styles */
.faq-section {
    padding: 100px 20px;
    background: #fff;
}

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

.faq-grid {
    display: grid;
    gap: 32px;
}

.faq-item {
    background: #fafafa;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f8faf8;
    border-color: #e8f0e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: block;
    line-height: 1.4;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 16px;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-list {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

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

    .mission-content.reverse {
        flex-direction: column;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* FAQ Mobile Styles */
    .faq-section {
        padding: 80px 20px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer p,
    .faq-list li {
        font-size: 15px;
    }
}

