:root {
    --primary-color: #0E300E; 
    --accent-color: #ede7c7; 
    --secondary-bg: #f8faf8; 
    --text-main: #2c3e50;
    --text-light: #576574;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(14, 48, 14, 0.8), rgba(14, 48, 14, 0.8)), 
                url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; }
.about-hero p { font-size: 1.2rem; opacity: 0.9; }

/* Grid Sistemi */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 100px 0; align-items: center; }
.grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }

@media (max-width: 992px) {
    .grid, .grid-stats { grid-template-columns: 1fr; gap: 40px; }
    .about-hero h1 { font-size: 2.5rem; }
}

/* About Text */
.sub-title { color: var(--accent-color); font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; }
.about-text h2 { color: var(--primary-color); font-size: 2.5rem; margin: 15px 0; line-height: 1.2; }
.about-text p { margin-bottom: 20px; color: var(--text-light); }

.about-image img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 20px 40px rgba(14, 48, 14, 0.1); 
}

/* Stats Section */
.stats { background: var(--primary-color); color: var(--white); padding: 80px 0; }
.stat-item h3 { font-size: 3rem; color: var(--accent-color); margin-bottom: 10px; }
.stat-item p { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }

/* Mission & Vision Cards */
.mission-vision { background: var(--secondary-bg); padding: 100px 0; }
.card {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.card:hover { transform: translateY(-12px); box-shadow: 0 15px 45px rgba(14, 48, 14, 0.1); }
.icon-box { 
    width: 80px; height: 80px; background: var(--secondary-bg); 
    border-radius: 50%; margin: 0 auto 25px; 
    display: flex; align-items: center; justify-content: center;
}
.card i { font-size: 2.2rem; color: var(--primary-color); }
.card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.5rem; }