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

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #40916c;
    --accent-color: #52b788;
    --light-green: #d8f3dc;
    --dark-text: #1b4332;
    --light-text: #74c69d;
    --green-dark: #1b4332;
    --white: #ffffff;
    --gray: #f8f9fa;
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-50px, 50px) rotate(180deg);
    }
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.3s both;
}

.address {
    font-size: 1em;
    margin-top: 15px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.intro-section {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin: -60px auto 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-top: 60px;
    animation: fadeIn 1s ease 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.intro-section p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #495057;
}

.section {
    margin-bottom: 80px;
    animation: slideIn 0.8s ease both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card h3 {
    color: var(--secondary-color);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.05em;
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(82, 183, 136, 0.1) 100%);
    border-radius: 15px;
    padding: 35px;
    margin: 30px 0;
    border-left: 5px solid var(--secondary-color);
}

.highlight-box h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.projects-list {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    margin: 20px 0;
}

.projects-list h4 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 20px;
}

.projects-list ul {
    list-style: none;
    padding-left: 0;
}

.projects-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.projects-list li:last-child {
    border-bottom: none;
}

.projects-list li:hover {
    background: var(--gray);
    border-radius: 8px;
}

.projects-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

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

.commitment-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 60px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(45, 106, 79, 0.3);
}

.commitment-section h2 {
    font-size: 2.8em;
    margin-bottom: 25px;
}

.commitment-section p {
    font-size: 1.2em;
    line-height: 1.9;
    opacity: 0.95;
}

.established-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 0.95em;
    backdrop-filter: blur(10px);
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.projects-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.projects-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.projects-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 0.95em;
}

.projects-table tbody tr {
    transition: background-color 0.3s ease;
}

.projects-table tbody tr:hover {
    background-color: var(--light-green);
}

.projects-table tbody tr:last-child td {
    border-bottom: none;
}

.projects-table td:nth-child(2) {
    white-space: nowrap;
    font-weight: 500;
    color: var(--secondary-color);
}

.projects-table td:nth-child(3) {
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .intro-section {
        padding: 30px;
        margin: -40px 20px 40px;
    }

    .section-title {
        font-size: 2em;
    }

    .card {
        padding: 25px;
    }

    .commitment-section {
        padding: 40px 30px;
    }

    .commitment-section h2 {
        font-size: 2em;
    }

    .projects-table {
        font-size: 0.85em;
    }

    .projects-table th,
    .projects-table td {
        padding: 12px 10px;
    }
}