/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #7CB342;
    color: white;
}

.cookie-btn.accept:hover {
    background: #689F35;
}

.cookie-btn.decline {
    background: #7CB342;
    color: white;
}

.cookie-btn.decline:hover {
    background: #689F35;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #7CB342;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7CB342 0%, #4A90E2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(./assets/bg.png);
    background-size: cover;
}

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

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Systems Section */
.systems {
    padding: 80px 0;
    background: #f8f9fa;
}

.systems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.systems-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.systems-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.systems-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

/* Stance Section */
.stance {
    padding: 80px 0;
    background: white;
}

.stance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stance-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.stance-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.stance-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Articles Section */
.articles {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.article-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Writing Process Section */
.writing-process {
    padding: 80px 0;
    background: white;
}

.writing-process h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

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

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

.process-icon {
    width: 80px;
    height: 80px;
    background: #7CB342;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.process-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.process-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Network Section */
.network {
    padding: 80px 0;
    background: #f8f9fa;
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.network-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.network-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.network-stats {
    margin-top: 30px;
}

.network-stats p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}

.network-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.newsletter-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.newsletter-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #7CB342;
}

.submit-btn {
    width: 100%;
    background: #7CB342;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #689F35;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #333;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 14px;
    color: #ccc;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .systems-content,
    .stance-content,
    .network-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stance-content {
        grid-template-areas: 
            "text"
            "image";
    }
    
    .stance-text {
        grid-area: text;
    }
    
    .stance-image {
        grid-area: image;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .systems-text h2,
    .stance-text h2,
    .network-text h2,
    .newsletter-text h2,
    .writing-process h2 {
        font-size: 28px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
}