/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header i nawigacja */
header {
    background: #2c5f2d;
    color: white;
    padding: 20px 0;
    border-bottom: 4px solid #234d23;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo .tagline {
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover,
nav a.active {
    background: #234d23;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c4e 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero.small {
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Content sections */
.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 1.5em;
    color: #2c5f2d;
    margin-bottom: 25px;
    border-bottom: 3px solid #2c5f2d;
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 1.3em;
    color: #2c5f2d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.0em;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 1.0em;
    margin-bottom: 10px;
}

.gray-bg {
    background: #f5f5f5;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.value-item h3 {
    color: #2c5f2d;
    margin-top: 0;
    margin-bottom: 15px;
}

/* News items */
.news-item {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #2c5f2d;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item h3 {
    margin-top: 0;
    color: #2c5f2d;
}

.news-item .date {
    color: #666;
    font-style: italic;
    font-size: 0.8em;
    margin-bottom: 15px;
}

/* CTA section */
.cta-section {
    background: #2c5f2d;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.0em;
    margin-bottom: 15px;
    color: white;
    border: none;
}

.cta-section p {
    font-size: 1.0em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2c5f2d;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.0em;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid white;
}

.cta-button:hover {
    background: #2c5f2d;
    color: white;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

/* Petition link */
.petition-link {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .hero h2 {
        font-size: 1.4em;
    }
    
    .content-section h2 {
        font-size: 1.4em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
