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

body {
    font-family: 'Poppins', sans-serif;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px;
    height: 80px;
    margin-right: 10px;
    object-fit: cover;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 20px;
}

.menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #40B8EC;
}

.menu li .cta-button {
    background-color: #40B8EC;
    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-align: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.menu li .cta-button:hover {
    background-color: #2C94C5;
}

.menu-toggle {
    cursor: pointer;
    display: none;
    font-size: 24px;
    color: #333;
}

@media (max-width: 768px) {
    .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #eee;
        padding: 10px 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        visibility: hidden;
    }

    .menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        margin-top: 40px;
    }

    .menu li {
        margin: 10px 0;
        text-align: left;
    }

    .menu li:last-child {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .menu li .cta-button {
        width: calc(100% - 40px);
        margin: 10px auto;
        padding: 10px 0;
        display: block;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        font-size: 24px;
    }

    .menu-toggle.active {
        content: '\00d7'; /* Change to X */
        font-size: 24px;
        font-weight: bold;
    }

    .menu-close {
        display: block;
        text-align: right;
        margin-right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }
}

@media (min-width: 769px) {
    .menu {
        display: flex;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .menu-close {
        display: none;
    }
}

.goals {
    text-align: center;
    background: #f4faff;
    padding: 50px 20px;
}

.goals-container h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
}

.goals-container p {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0;
}

.goals-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.goal {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding-bottom: 20px;
    max-width: 400px;
    text-align: center;
}

.goal img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.goal h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 20px;
}

.goal p {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    margin-left: 20px;
}

/* Ogólny styl sekcji */
section {
    padding: 80px 80px; /* Więcej miejsca na górze i dole */
}


/* Sekcja cele */
.goals-section {
    background-color: #f3f8fc; /* Minimalnie ciemniejsze tło */
    padding: 100px 80px; /* Więcej miejsca na górze i dole */
    text-align: left;
}

.goals-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px; /* Większy odstęp pod nagłówkiem */
}

.goals-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px; /* Więcej miejsca pod opisem */
}

.goals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Większy odstęp między kartami */
    justify-content: center;
}

.goal-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px; /* Więcej przestrzeni w kartach */
    max-width: 320px;
    text-align: left;
}

.goal-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 25px;
}

.goal-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px; /* Większy odstęp pod tytułem */
}

.goal-card p {
    font-size: 1rem;
    color: #555;
}

/* Header */
.header {
    text-align: center;
    background: linear-gradient(to bottom, #eaf7ff, #ffffff);
    padding: 80px 20px;
}

.header-container h1 span {
    display: block;
    font-size: 2rem;
    color: #333;
}

.header-container h1 strong {
    font-size: 3rem;
    color: #40B8EC;
    font-weight: bold;
}

.header-container p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #666;
}

.header-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button.primary {
    background-color: #40B8EC;
    color: #fff;
    border: none;
}

.button.primary:hover {
    background-color: #2C94C5;
}

.button.secondary {
    background-color: transparent;
    color: #40B8EC;
    border: 2px solid #40B8EC;
}

.button.secondary:hover {
    background-color: #40B8EC;
    color: #fff;
}
.header-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center; /* Wyśrodkowanie kafelków */
    margin-top: 50px;
}

.card {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    text-align: left; /* Wyrównanie zawartości do lewej */
    display: flex;
    flex-direction: column; /* Każdy element w osobnym wierszu */
    gap: 20px; /* Odstęp między elementami */
}

.card .icon {
    background: rgba(144, 193, 67, 0.1); /* Jasnozielone tło */
    padding: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px; /* Stałe wymiary dla spójności */
}

.card .icon svg {
    width: 32px;
    height: 32px;
    stroke: #90C143;
}

.card h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.tax-section {
    background: #fff; /* Tło podobne do headera */
    padding: 80px 20px;
}

.tax-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.tax-content {
    max-width: 600px;
    flex: 1 1 50%; /* Przydział miejsca na desktopie */
}

.tax-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.tax-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.tax-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.tax-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tax-steps .icon {
    background: rgba(64, 184, 236, 0.1); /* Jasnoniebieskie tło */
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.tax-steps .icon svg {
    width: 24px;
    height: 24px;
    stroke: #40B8EC;
}

.tax-steps h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.tax-steps p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.button.primary {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    background-color: #40B8EC;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button.primary:hover {
    background-color: #2C94C5;
}

.tax-image {
    flex: 1 1 40%; /* Przydział miejsca na desktopie */
    display: flex;
    justify-content: center;
    align-items: center;
}

.tax-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 600px;
}

/* Układ dla urządzeń mobilnych */
@media (max-width: 768px) {
    .tax-container {
        flex-direction: column;
        text-align: left; /* Wszystko wyrównane do lewej */
    }

    .tax-content {
        text-align: left; /* Tekst w treści również wyrównany do lewej */
    }

    .tax-image {
        margin-top: 20px;
    }
}


.foundation-section {
    background: linear-gradient(to bottom, #f7faef, #ffffff); /* Gradientowe tło */
    padding: 80px 20px;
}

.foundation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.foundation-content {
    max-width: 600px;
    flex: 1 1 50%; /* Treść zajmuje połowę szerokości */
    text-align: left;
}

.foundation-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.foundation-content .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.foundation-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.button.green {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    background-color: #90C143;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button.green:hover {
    background-color: #78A83B;
}

.foundation-image {
    flex: 1 1 40%; /* Obrazek zajmuje mniejszą część */
    display: flex;
    justify-content: center;
    align-items: center;
}

.foundation-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Układ mobilny */
@media (max-width: 768px) {
    .foundation-container {
        flex-direction: column;
    }

    .foundation-content {
        text-align: left; /* Tekst wyrównany do lewej */
    }

    .foundation-image {
        margin-top: 20px;
    }
}
.about-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.about-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.about-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border-left: 2px solid #40B8EC; /* Główna linia osi czasu */
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -10px; /* Pozycja na środku linii */
    top: 50%;
    transform: translateY(-50%); /* Wyśrodkowanie kropki względem linii */
    width: 16px;
    height: 16px;
    background-color: #40B8EC;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline-text {
    margin-left: 40px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.timeline-text strong {
    font-weight: bold;
}

/* Responsywność */
@media (max-width: 768px) {
    .timeline {
        border-left: 2px solid #40B8EC;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        left: -8px; /* Dostosowanie pozycji na mniejszych ekranach */
        top: 0; /* Wyśrodkowanie względem tekstu */
    }

    .timeline-text {
        margin-left: 40px;
    }

    .about-section {
        text-align: left;
    }
}

.fundation-goal-section {
    background: linear-gradient(to bottom, #eaf7ff, #ffffff); /* Gradientowe tło */
    padding: 80px 20px;
}

.container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-content {
    flex: 1 1 50%; /* Tekst w lewej kolumnie */
    text-align: left;
}

.goal-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.goal-content .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.goal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.goal-cards {
    flex: 1 1 50%; /* Karty w prawej kolumnie */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dwie kolumny kart */
    gap: 20px;
}

.card {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.2rem;
    color: #40B8EC; /* Kolor nagłówka */
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #555;
}

/* Responsywność */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Na mobile tekst nad kartami */
    }

    .goal-cards {
        grid-template-columns: 1fr; /* Jedna karta w wierszu na mobile */
    }
}

/* Stopka */
.footer {
    background: #121212;
    color: #fff;
    padding: 40px 20px;
}

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

.footer-about,
.footer-navigation,
.footer-social,
.footer-contact {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, flex-basis */
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.footer-navigation h3,
.footer-social h3,
.footer-contact h3 {
    font-size: 1.2rem;
    color: #40B8EC;
    margin-bottom: 20px;
}

.footer-navigation ul,
.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation li,
.footer-social li {
    margin-bottom: 10px;
}

.footer-navigation a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-social a:hover {
    color: #40B8EC;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0d0d0d;
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about,
    .footer-navigation,
    .footer-social,
    .footer-contact {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

.documents-section {
    background-color: #f9fafa;
    padding: 60px 20px;
}

.documents-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.document-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 0;
}

.document-card .document-icon {
    width: 50px;
    height: 50px;
    color: #40B8EC;
    margin-bottom: 10px;
}

.news-section {
    background-color: #f9fafa;
    padding: 60px 20px;
}

.news-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 1.2rem;
    color: #40B8EC;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.post-header {
    background-color: #f9fafa;
    padding: 60px 20px;
    text-align: center;
}

.post-header-container h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.post-content {
    padding: 40px 20px;
    height: 80vh;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.post-content article {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.post-content blockquote {
    font-style: italic;
    color: #40B8EC;
    padding: 10px 20px;
    border-left: 3px solid #40B8EC;
    margin: 20px 0;
    background-color: #f0faff;
}

/* Stylizacja dla daty i ikony kalendarza w kartach aktualności */
.news-card .news-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.news-card .news-date i {
    color: #40B8EC; /* Kolor ikony kalendarza */
    margin-right: 8px; /* Odstęp między ikoną a datą */
}

.news-card .news-date span {
    font-size: 0.85rem;
    color: #999;
}