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

:root {
    --green-dark: #1a3d1a;
    --green-mid: #2d5a27;
    --green-light: #4a7c4e;
    --orange: #fb9622;
    --white: #ffffff;
    --gray-light: #f5f7fa;
    --text-dark: #2d3748;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-light);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
}

.logo-link {
    display: flex;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: -1;
}

.blob-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4a7c4e 0%, #2d5a27 100%);
    top: -60px;
    left: -60px;
    animation: float-blob-1 15s ease-in-out infinite;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fb9622 0%, #e8850a 100%);
    top: 40%;
    right: -50px;
    animation: float-blob-2 18s ease-in-out infinite;
}

.blob-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #6b9b5e 0%, #4a7c4e 100%);
    bottom: -50px;
    left: 25%;
    animation: float-blob-3 12s ease-in-out infinite;
}

@keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

@keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 10px); }
}

@keyframes float-blob-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -10px); }
}

.glass-header {
    padding: 12px 0 8px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-ring {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    padding: 3px;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    flex-shrink: 0;
}

.logo-inner {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaf-icon {
    width: 26px;
    height: 26px;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.5px;
}

.logo-text h1 em {
    font-style: normal;
    color: var(--orange);
}

.logo-text p {
    font-size: 0.6rem;
    color: var(--green-light);
    margin-top: 1px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    margin: 8px auto;
    max-width: 450px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 8px;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: center;
    padding: 6px;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-item:hover {
    background: var(--green-mid);
    color: var(--white);
}

.nav-item.active {
    background: var(--green-mid);
    color: var(--white);
}

.page-content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-hero {
    text-align: center;
    padding: 15px 0;
    animation: fade-up 1s ease-out;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.flower-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
}

.flower-container.small {
    width: 55px;
    height: 55px;
}

.flower {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.petal {
    position: absolute;
    width: 18px;
    height: 30px;
    background: linear-gradient(180deg, #ff9ec4 0%, #ff6b9d 50%, #e84a7f 100%);
    border-radius: 50%;
    top: 5px;
    left: 26px;
}

.small .petal {
    width: 14px;
    height: 24px;
    top: 4px;
    left: 20px;
}

.petal-1 { transform: rotate(0deg) translateY(0); }
.petal-2 { transform: rotate(45deg) translateY(0); }
.petal-3 { transform: rotate(90deg) translateY(0); }
.petal-4 { transform: rotate(135deg) translateY(0); }
.petal-5 { transform: rotate(180deg) translateY(0); }
.petal-6 { transform: rotate(225deg) translateY(0); }
.petal-7 { transform: rotate(270deg) translateY(0); }
.petal-8 { transform: rotate(315deg) translateY(0); }

.flower-center {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #ffd700 0%, #ffb347 100%);
    border-radius: 50%;
    top: 27px;
    left: 27px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
    z-index: 10;
}

.small .flower-center {
    width: 12px;
    height: 12px;
    top: 21px;
    left: 21px;
}

.flower-shadow {
    position: absolute;
    width: 40px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    bottom: -6px;
    left: 50%;
    margin-left: -20px;
    animation: shadow-pulse 3s ease-in-out infinite;
}

.small .flower-shadow {
    width: 35px;
    margin-left: -17px;
    bottom: -5px;
}

@keyframes shadow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(0.8); opacity: 0.15; }
}

.page-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.page-title .highlight {
    color: var(--orange);
    display: inline;
    position: relative;
}

.page-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(251, 150, 34, 0.3);
    z-index: -1;
    border-radius: 3px;
}

.page-subtitle {
    font-size: 0.85rem;
    color: var(--green-light);
    font-weight: 300;
}

.notice-section {
    margin: 10px 0;
}

.notice-card {
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.25);
}

.notice-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon svg {
    width: 20px;
    height: 20px;
}

.notice-content h2 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.notice-content p {
    opacity: 0.9;
    font-size: 0.8rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12px;
    margin: 12px 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.glass-card h2 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.glass-card p {
    color: #5a6778;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: linear-gradient(135deg, #f0f4f0, #e8f0e8);
    border-radius: 10px;
}

.feature-icon {
    font-size: 1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--green-dark);
    font-size: 0.75rem;
}

.mission-card {
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white);
}

.mission-card h2 {
    color: var(--white);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 6px;
    width: 0;
    transition: width 1.5s ease-out;
}

.progress-label {
    display: block;
    margin-top: 5px;
    font-size: 0.7rem;
    opacity: 0.8;
}

.values-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.value-card {
    text-align: center;
    padding: 12px 8px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.value-card h3 {
    font-size: 0.8rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.value-card p {
    color: #5a6778;
    font-size: 0.7rem;
}

.cta-section {
    margin: 15px 0;
}

.cta-card {
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    padding: 15px;
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 0.8rem;
}

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

.cta-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--orange);
    color: var(--white);
}

.cta-btn.primary:hover {
    background: #e8850a;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--green-dark);
}

.impact-section {
    text-align: center;
    margin: 15px 0;
    padding: 15px;
}

.impact-section h2 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

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

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
}

.impact-label {
    color: #5a6778;
    font-size: 0.75rem;
}

.contact-list {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-info strong {
    display: block;
    color: var(--green-dark);
    font-size: 0.75rem;
    margin-bottom: 1px;
}

.contact-info span {
    color: #5a6778;
    font-size: 0.75rem;
}

.contact-form-card {
    background: var(--white);
}

.contact-form {
    margin-top: 10px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 4px;
    font-size: 0.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-mid);
}

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

.submit-btn {
    width: 100%;
    padding: 8px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background: #e8850a;
    transform: translateY(-1px);
}

.form-message {
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 15px 0 12px;
    margin-top: 15px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-copy {
    font-size: 0.7rem;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .values-section {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.4rem;
    }
    
    .notice-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-inner {
        flex-wrap: wrap;
    }
    
    .nav-item {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}