:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --light-green: #a8e6cf;
    --dark-bg: #1a1a2e;
    --mid-bg: #16213e;
    --light-bg: #0f3460;
    --text-light: #f8f9fa;
    --text-gray: #adb5bd;
    --accent-yellow: #f39c12;
    --accent-blue: #3498db;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-bg) 100%);
    min-height: 100vh;
}

.main-header {
    background: rgba(26, 26, 46, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    border-radius: 50%;
    border: 2px solid var(--primary-green);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background: rgba(46, 204, 113, 0.1);
}

.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(52, 152, 219, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.hero-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    padding: 4rem 0;
    background: rgba(22, 33, 62, 0.5);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.intro-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-section {
    padding: 4rem 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.3);
}

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

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.newsletter-section {
    padding: 4rem 0;
    background: rgba(46, 204, 113, 0.1);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(22, 33, 62, 0.8);
    border-radius: 20px;
}

.newsletter-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.newsletter-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-button {
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

.page-header-section {
    padding: 4rem 0 2rem;
    text-align: center;
    background: rgba(22, 33, 62, 0.5);
}

.page-header-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.page-header-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.blog-section {
    padding: 3rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-post-card {
    background: rgba(22, 33, 62, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.3);
}

.blog-post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-date {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-post-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.blog-post-excerpt {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--dark-green);
}

.about-intro-section {
    padding: 3rem 0;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

.team-name {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: bold;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.6;
}

.values-section {
    padding: 4rem 0;
    background: rgba(46, 204, 113, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.value-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-section {
    padding: 3rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-column {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
}

.contact-heading {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-green);
}

.contact-label {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form-column {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-submit-button {
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-submit-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.map-section {
    padding: 4rem 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-article {
    background: rgba(22, 33, 62, 0.5);
    padding: 3rem 0;
}

.post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.post-author {
    color: var(--accent-yellow);
}

.post-separator {
    color: var(--text-gray);
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-green);
    font-style: italic;
}

.post-content h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin: 2.5rem 0 1.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-tags {
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.tag-label {
    color: var(--primary-green);
    font-weight: bold;
}

.post-tag {
    padding: 0.5rem 1rem;
    background: rgba(22, 33, 62, 0.8);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
}

.post-tag:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 204, 113, 0.3);
}

.post-nav-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.post-nav-link:hover {
    color: var(--dark-green);
}

.main-footer {
    background: rgba(15, 15, 30, 0.95);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    color: var(--text-gray);
}

.footer-heading {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-text {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    color: var(--text-gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 33, 62, 0.98);
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary-green);
    color: white;
}

.cookie-accept:hover {
    background: var(--dark-green);
}

.cookie-decline {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--accent-blue);
    text-decoration: none;
    margin-left: 1rem;
}

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

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: rgba(22, 33, 62, 0.98);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-green);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.modal-title {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-message {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-button {
    padding: 1rem 3rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modal-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}
