:root {
    /* Corporate Colors */
    --base-color: #2b312c;
    --text-color: #f5fff7;
    --primary-color: #007013;
    --primary-light: #00a01a;

    /* Additional Colors from Logo */
    --accent-green: #05aa02;
    --accent-light-green: #56ff54;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--base-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--base-color) 0%, #1a1f1b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    opacity: 0.1;
    top: -250px;
    right: -250px;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 30px) rotate(120deg); }
    66% { transform: translate(30px, -30px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-color), var(--accent-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: rgba(245, 255, 247, 0.9);
    line-height: 1.7;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--accent-light-green) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem !important;
}

.hero-tagline {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-top: 2rem !important;
}

.highlight {
    color: var(--accent-light-green);
    font-weight: 600;
    background: linear-gradient(180deg, transparent 60%, rgba(86, 255, 84, 0.2) 60%);
    padding: 0 2px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 112, 19, 0.3));
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--primary-light);
    box-shadow: 0 10px 20px rgba(0, 112, 19, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #1a1f1b;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-light-green);
}

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

.founder-card {
    background: var(--base-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
}

.founder-initial {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.founder-initial svg {
    width: 100%;
    height: 100%;
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.founder-card p {
    color: rgba(245, 255, 247, 0.8);
}

.founder-quote {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1rem 0;
    font-style: italic;
    position: relative;
}

.founder-quote p {
    margin: 0;
    line-height: 1.6;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-green);
    opacity: 0.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Footer */
footer {
    padding: 2rem 0;
    background: #1a1f1b;
    border-top: 2px solid var(--primary-color);
}

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

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-contact, .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-contact a, .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
}

.footer-contact a:hover, .footer-links a:hover {
    color: var(--accent-light-green);
}

.footer-contact span, .footer-links span {
    color: rgba(245, 255, 247, 0.3);
}

.footer-bottom p {
    color: rgba(245, 255, 247, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Pages Specific */
.legal-page {
    min-height: 100vh;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--base-color) 0%, #1a1f1b 100%);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--accent-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-content {
    background: rgba(27, 31, 28, 0.5);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--accent-light-green);
    margin: 2rem 0 1rem 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem 0;
}

.legal-content p, .legal-content li {
    color: rgba(245, 255, 247, 0.9);
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--accent-light-green);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-light-green);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-logo svg {
        max-width: 300px;
        margin-top: 32px;
    }
}
