:root {
    --Platonic: #F5F5F5;
    --Napisy: #171940;
    --Niebieski: #3B82F6;
    --NiebieskiHover: #3a72cc;
    --CiemnyNeibieski: #171940;
    --JasnyNiebieski: #5E93F0;
    --Fioletowy: #7471D9;
    --FioletowyHover: #5f5cbd;
    --CiemnyFioletowy1: #3A2390;
    --CiemnyFioletowy2: #3E0C60;
    --SzaryTeskt: #303030;
    --JasnySzary: #A9A9A9;
    --JasnyBiały: #F8F8F8;
    --JasnoSzaryTekst: #5b5b5b;
}

/* Third section */
.third-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    z-index: 2;
}

.third-section-content {
    display: flex;
    gap: 40px;
    width: 100%;
    margin: 0 100px;
    align-items: stretch;
}

.third-section-spec-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    padding: 50px 40px;
    border-radius: 24px;
    border: 4px solid var(--JasnySzary);
    background: var(--JasnyBiały);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.third-section-spec-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.third-section-spec-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.third-section-title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.third-section-title-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(-45deg, var(--Fioletowy), var(--Niebieski));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.third-section-title-text::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--Fioletowy), var(--Niebieski));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.third-section-spec-box .third-section-mini-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.third-section-one-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.third-section-one-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 0;
}

.third-section-one-box:hover::before {
    opacity: 0.05;
}

.third-section-one-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.third-section-one-subtitle-box {
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.third-section-one-subtitle-box-text {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(-45deg, var(--Fioletowy), var(--Niebieski));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
}

.third-section-one-signature-box {
    position: relative;
    z-index: 1;
}

.third-section-one-signature-box-text {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Nowa sekcja z dodatkowymi informacjami */
.additional-info-section {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(37, 99, 235, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    display: none;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--Napisy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--Fioletowy), var(--Niebieski));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--Fioletowy), var(--Niebieski));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.info-item-content {
    flex: 1;
}

.info-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--Napisy);
    margin-bottom: 4px;
}

.info-item-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Prawa sekcja */
.third-section-content > .third-section-mini-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    background: var(--JasnyBiały);
    border-radius: 24px;
    border: 4px solid var(--JasnySzary);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    justify-content: space-between; /* Dodane */
}

.mini-box-content {
    position: relative;
    z-index: 1;
    flex-grow: 1; /* Dodane - rozciąga content */
    display: flex; /* Dodane */
    flex-direction: column; /* Dodane */
    justify-content: center; /* Dodane - centruje content */
}

.third-section-content > .third-section-mini-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    opacity: 0.05;
    border-radius: 0 24px 0 100%;
}

.mini-box-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.mini-box-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.mini-box-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.mini-box-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--Napisy);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.mini-box-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.mini-box-content {
    position: relative;
    z-index: 1;
}

.mini-box-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f3f4f6;
}

.mini-box-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mini-box-stat-row:first-child {
    padding-top: 0;
}

.mini-box-stat-label {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-box-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--Niebieski);
}

.mini-box-stat-value {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(-45deg, var(--Fioletowy), var(--Niebieski));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-box-footer {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
    position: relative;
    z-index: 1;
}

.mini-box-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.mini-box-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.mini-box-button:active {
    transform: translateY(0);
}

/* Responsive Design */

/* Tablet - duży (do 1250px) */
@media (max-width: 1250px) {
    .third-section-content {
        margin: 0 60px;
        gap: 30px;
    }

    .third-section-spec-box {
        padding: 40px 30px;
    }

    .third-section-content > .third-section-mini-box {
        max-width: 400px;
        padding: 30px;
    }
}

/* Tablet - średni (do 1055px) - od razu kolumnowy layout */
@media (max-width: 1055px) {
    .third-section-content {
        margin: 0 40px;
        flex-direction: column;
        align-items: center;
    }

    .third-section-spec-box {
        width: 100%;
    }

    .third-section-content > .third-section-mini-box {
        max-width: 100%;
        width: 100%;
    }

    .third-section-title-text {
        font-size: 28px;
    }

    .third-section-one-box {
        width: 180px;
        height: 180px;
        padding: 20px;
    }

    .third-section-one-subtitle-box-text {
        font-size: 48px;
    }

    .third-section-one-signature-box-text {
        font-size: 16px;
    }
}

/* Tablet - mały / Mobile - duży (do 768px) */
@media (max-width: 768px) {
    .third-section-content {
        margin: 0 20px;
        gap: 24px;
    }

    .third-section-spec-box {
        padding: 30px 20px;
    }

    .third-section-content > .third-section-mini-box {
        padding: 24px;
    }

    .third-section-title-text {
        font-size: 24px;
    }

    .section-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .third-section-spec-box .third-section-mini-box {
        gap: 16px;
    }

    .third-section-one-box {
        width: 160px;
        height: 160px;
        padding: 16px;
    }

    .third-section-one-subtitle-box-text {
        font-size: 40px;
    }

    .third-section-one-signature-box-text {
        font-size: 14px;
    }

    .mini-box-title {
        font-size: 20px;
    }

    .mini-box-subtitle {
        font-size: 14px;
    }

    .mini-box-stat-value {
        font-size: 18px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-item {
        padding: 12px;
    }
}

/* Mobile - średni (do 576px) */
@media (max-width: 576px) {
    .third-section-content {
        margin: 0 16px;
        gap: 20px;
    }

    .third-section-spec-box {
        padding: 24px 16px;
    }

    .third-section-content > .third-section-mini-box {
        padding: 20px;
    }

    .third-section-title-text {
        font-size: 22px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .third-section-spec-box .third-section-mini-box {
        gap: 12px;
    }

    .third-section-one-box {
        width: 140px;
        height: 140px;
        padding: 12px;
        border-radius: 16px;
    }

    .third-section-one-subtitle-box {
        margin-bottom: 8px;
    }

    .third-section-one-subtitle-box-text {
        font-size: 36px;
    }

    .third-section-one-signature-box-text {
        font-size: 13px;
    }

    .mini-box-header {
        margin-bottom: 24px;
    }

    .mini-box-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .mini-box-icon svg {
        width: 24px;
        height: 24px;
    }

    .mini-box-title {
        font-size: 18px;
    }

    .mini-box-subtitle {
        font-size: 13px;
    }

    .mini-box-stat-row {
        padding: 14px 0;
    }

    .mini-box-stat-label {
        font-size: 14px;
    }

    .mini-box-stat-value {
        font-size: 16px;
    }

    .mini-box-footer {
        margin-top: 24px;
        padding-top: 20px;
    }

    .mini-box-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }

    .info-item-icon {
        margin-bottom: 8px;
    }
}

/* Mobile - mały (do 400px) */
@media (max-width: 400px) {
    .third-section-content {
        margin: 0 12px;
    }

    .third-section-spec-box {
        padding: 20px 12px;
    }

    .third-section-content > .third-section-mini-box {
        padding: 16px;
    }

    .third-section-title-text {
        font-size: 20px;
    }

    .third-section-one-box {
        width: 130px;
        height: 130px;
        padding: 10px;
    }

    .third-section-one-subtitle-box-text {
        font-size: 32px;
    }

    .third-section-one-signature-box-text {
        font-size: 12px;
    }

    .mini-box-title {
        font-size: 16px;
    }

    .mini-box-stat-label {
        font-size: 13px;
    }

    .mini-box-stat-value {
        font-size: 15px;
    }
}

/* ===== SEKCJA CHARYTATYWNA ===== */

.charity-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: 110px auto 70px;
    z-index: 2;
}

.charity-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 81px;
}

.charity-body {
    display: flex;
    align-items: stretch;
    gap: 32px;
    margin-top: 50px;
}

.charity-left-card {
    flex: 1;
    min-width: 0;
    background: var(--JasnyBiały);
    border: 4px solid var(--JasnySzary);
    border-radius: 24px;
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.charity-left-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    opacity: 0.03;
    border-radius: 50%;
    pointer-events: none;
}

.charity-left-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    opacity: 0.03;
    border-radius: 50%;
    pointer-events: none;
}

.charity-left {
    position: relative;
    z-index: 1;
}

.charity-edition-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--Niebieski);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.charity-title {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--Napisy);
    line-height: 1.25;
    margin-bottom: 24px;
}

.charity-text {
    font-size: 16px;
    color: var(--JasnoSzaryTekst);
    line-height: 1.8;
    margin-bottom: 16px;
}

.charity-text strong {
    color: var(--Napisy);
    font-weight: 600;
}

.charity-steps {
    display: flex;
    flex-direction: column;
    margin: 32px 0 36px;
}

.charity-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.charity-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--Niebieski), var(--Fioletowy));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.charity-step-content {
    padding-top: 4px;
}

.charity-step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--Napisy);
    margin-bottom: 4px;
}

.charity-step-text {
    font-size: 14px;
    color: var(--JasnoSzaryTekst);
    line-height: 1.6;
}

.charity-step-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--Niebieski), var(--Fioletowy));
    margin-left: 17px;
    opacity: 0.3;
    border-radius: 1px;
}

.charity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--Niebieski);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.charity-link:hover {
    border-color: var(--Niebieski);
    color: var(--NiebieskiHover);
}

.charity-right {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    flex-direction: column;
}

.charity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, #0f2d6b, #1a4a9e);
    border-radius: 22px;
    padding: 36px 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.22);
    flex: 1;
}

.charity-card-deco-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(94, 147, 240, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.charity-card-deco-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.charity-card-top {
    text-align: center;
}

.charity-card-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}

.charity-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.charity-card-name {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.55;
}

.charity-card-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 22px 0;
}

.charity-card-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    text-align: center;
}

.charity-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.charity-card-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1200px) {
    .charity-inner {
        margin: 0 40px;
    }
    .charity-body {
        gap: 48px;
    }
}

@media (max-width: 1100px) {
    .charity-body {
        flex-direction: column;
    }
    .charity-right {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .charity-section {
        margin: 70px auto 50px;
    }
    .charity-inner {
        margin: 0 24px;
    }
    .charity-body {
        gap: 40px;
    }
    /* Płynne przejście nagłówka, jeśli potrzebujesz w 900px. Możesz też usunąć tę regułę całkowicie. */
    .charity-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .charity-text {
        font-size: 15px;
    }
    .charity-title {
        font-size: 24px; /* Zastępuje 28px na ekranach od 768px w dół */
    }
}

@media (max-width: 600px) {
    .charity-body {
        gap: 32px;
    }
    
    .charity-left-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .charity-card {
        padding: 28px 20px;
    }

    /* Wyśrodkowanie tagu edycji */
    .charity-edition-tag {
        display: table;
        margin: 0 auto 22px auto;
    }

    .charity-step {
        gap: 12px;
    }

    .charity-step-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .charity-step-connector {
        margin-left: 15px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .charity-inner {
        margin: 0 16px;
    }
    .charity-left-card {
        padding: 28px 20px;
    }
}

/* Fourth section */
.fourth-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin-top: 110px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 70px;
    z-index: 2;
}

.fourth-section-container {
    display: flex;
    flex-direction: row;
    margin-left: 81px;
    width: 100%;
}

.fourth-section-left {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.fourth-section-title-box {
    margin-top: 70px;
}

.fourth-section-title {
    font-size: 40px;
    font-weight: 500;
    background: linear-gradient(90deg, var(--Niebieski), var(--Fioletowy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.fourth-progress-line-box {
    margin-top: 30px;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.progress-bar-wrapper {
    flex: 1;
    height: 12px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--Niebieski), var(--Fioletowy));
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-percentage {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--Niebieski), var(--Fioletowy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    min-width: 60px;
    text-align: right;
}

.fourth-content-box {
    margin-top: 70px;
    padding-left: 19px;
}

.fourth-task-title-box {
    margin-bottom: 20px;
}

.fourth-task-title {
    font-size: 28px;
    font-weight: 500;
    color: #1F2937;
}

.fourth-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
}
        
.fourth-section-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    min-height: 400px; 
}

.chart-wrapper {
    width: 100%;
    max-width: 750px;
    height: auto;
}

.animated-chart {
    width: 100%;
    height: auto;
    overflow: visible;
}

.grid-lines line {
    stroke: #D1D5DB;
    stroke-width: 2;
}

.chart-line {
    stroke-dasharray: 470;
    stroke-dashoffset: 470;
}

.chart-shadow-line {
    stroke-dasharray: 470;
    stroke-dashoffset: 470;
    filter: blur(8px);
    opacity: 0.4;
}

.chart-arrow-anim {
    opacity: 0;
    transform: scale(0);
    transform-origin: 0 0; 
}

.start-animation .chart-line {
    animation: drawChart 2s ease-out forwards;
}

.start-animation .chart-shadow-line {
    animation: drawChart 2s ease-out forwards;
}

.start-animation .chart-arrow-anim {
    animation: popArrow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.7s;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes popArrow {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 1500px) {
    .fourth-section {
        margin-bottom: 100px;
    }

    .chart-wrapper {
        margin-top: 30px;
    }
}

@media screen and (max-width: 1400px) {
    .fourth-section {
        margin-bottom: 120px;
    }

    .chart-wrapper {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1300px) {
    .fourth-section-right {
        display: none;
    }
    
    .fourth-section-container {
        justify-content: center;
        margin-left: 60px;
        margin-right: 60px;
    }
    
    .fourth-section-left {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .fourth-section {
        margin-bottom: 150px;
    }
    
    .fourth-section-container {
        margin-left: 40px;
        margin-right: 40px;
    }
    
    .fourth-section-title-box {
        margin-top: 40px;
    }
    
    .fourth-section-title {
        font-size: 32px;
    }
    
    .fourth-progress-line-box {
        margin-top: 20px;
        max-width: 100%;
    }
    
    .progress-percentage {
        font-size: 20px;
        min-width: 50px;
    }
    
    .fourth-content-box {
        margin-top: 50px;
        padding-left: 0;
    }
    
    .fourth-task-title {
        font-size: 24px;
    }
    
    .fourth-content-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .fourth-section {
        margin-top: 60px;
        margin-bottom: 90px
    }
    
    .fourth-section-container {
        margin-left: 25px;
        margin-right: 25px;
    }
    
    .fourth-section-title-box {
        margin-top: 30px;
    }
    
    .fourth-section-title {
        font-size: 28px;
    }
    
    .progress-container {
        gap: 10px;
    }
    
    .progress-bar-wrapper {
        height: 10px;
    }
    
    .progress-percentage {
        font-size: 18px;
        min-width: 45px;
    }
    
    .fourth-content-box {
        margin-top: 40px;
    }
    
    .fourth-task-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .fourth-content-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Fifth section */

.fifth-section-desktop {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
    z-index: 2;
}

.fifth-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin: 0 81px 25px;
    z-index: 2;
    gap: 25px;
}

.fifth-card {
    height: 70px;
    border-radius: 15px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, var(--Niebieski), var(--Fioletowy)) border-box;
    border: 3px solid transparent;
}

.fifth-main-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    max-width: 900px;
    padding: 0 22px;
}

.fifth-left-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fifth-right-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.fifth-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--SzaryTeskt);
    white-space: nowrap;
}

.fifth-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.fifth-cube {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(-45deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    flex-shrink: 0;
}

.fifth-description {
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex: 1;
    min-width: 250px;
}

.fifth-description-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--SzaryTeskt);
    line-height: 1.4;
}

/* MOBILE/TABLET VERSION - pokazywana poniżej 1150px */
.fifth-section-mobile {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 60px;
    padding: 0 30px;
    z-index: 2;
}

.fifth-table-wrapper {
    position: relative;
    z-index: 2;
}

.fifth-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--JasnySzary);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 123, 247, 0.1);
    position: relative;
    z-index: 2;
}

.fifth-table thead {
    background: linear-gradient(135deg, var(--Niebieski), var(--Fioletowy));
}

.fifth-table th {
    padding: 20px 15px;
    text-align: left;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.fifth-table tbody tr {
    border-bottom: 2px solid #f0f4f8;
    transition: all 0.3s ease;
}

.fifth-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(74, 123, 247, 0.05), rgba(139, 92, 246, 0.05));
    transform: translateX(5px);
}

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

.fifth-table td {
    padding: 18px 15px;
    color: var(--SzaryTeskt);
    font-size: 15px;
}

.fifth-table td:first-child {
    font-weight: 600;
    color: #1f2937;
}

.fifth-status-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fifth-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.fifth-badge-success {
    background: #d1fae5;
    color: #065f46;
}

.fifth-badge-error {
    background: #fee2e2;
    color: #991b1b;
}

.fifth-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.fifth-info-box {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid var(--JasnySzary);
    border-left: 4px solid var(--Niebieski);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(74, 123, 247, 0.08);
}

.fifth-info-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--Niebieski);
    margin-bottom: 10px;
}

.fifth-info-list {
    list-style: none;
    padding: 0;
}

.fifth-info-list li {
    padding: 8px 0;
    color: var(--SzaryTeskt);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fifth-info-list li:before {
    content: "→";
    color: var(--Fioletowy);
    font-weight: bold;
    font-size: 16px;
}

/* Circle background */
.fifth-circle {
    position: absolute;
    top: -120px;
    left: -150px;
    width: 670px;
    height: 670px;
    border-radius: 50%;
    background: linear-gradient(0deg, var(--CiemnyFioletowy1) 0%, var(--Niebieski) 100%);
    z-index: 1;
}

/* RESPONSIVE LOGIC */
@media (max-width: 1400px) {
    .fifth-row {
        margin: 0 60px 25px;
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .fifth-row {
        margin: 0 40px 25px;
        gap: 15px;
    }

    .fifth-text {
        font-size: 18px;
    }
}

/* PRZEŁĄCZENIE NA MOBILNY WIDOK */
@media (max-width: 1150px) {
    .fifth-section-desktop {
        display: none !important;
    }

    .fifth-section-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .fifth-section-mobile {
        padding: 0 20px;
        margin-top: 40px;
    }

    .fifth-table th,
    .fifth-table td {
        padding: 15px 12px;
        font-size: 14px;
    }

    .fifth-table th {
        font-size: 15px;
    }

    .fifth-info-box {
        padding: 15px;
    }

    .fifth-circle {
        width: 400px;
        height: 400px;
        top: -80px;
        left: -80px;
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .fifth-section-mobile {
        padding: 0 15px;
    }

    .fifth-table-wrapper {
        overflow-x: auto;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(74, 123, 247, 0.1);
        position: relative;
        z-index: 2;
    }

    .fifth-table {
        min-width: 100%; /* Zamiast 500px */
        width: 100%;
        table-layout: fixed; /* Opcjonalnie: wymusza równy podział lub lepszą kontrolę */
    }

    .fifth-table th,
    .fifth-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .fifth-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    .fifth-info-box {
        margin-top: 20px;
    }

    .fifth-info-list li {
        font-size: 13px;
    }

    .fifth-circle {
        width: 300px;
        height: 300px;
        top: -60px;
        left: -60px;
        opacity: 0.5;
    }

    .fifth-table th:nth-child(4),
    .fifth-table td:nth-child(4) {
        display: none;
    }
}

/* Sixth section */

.sixth-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 180px;
    padding: 0 20px;
    z-index: 2;
}

.sixth-section-container {
    display: flex;
    flex-direction: row;
    gap: 36px;
    padding: 60px 50px;
    border: 4px solid var(--JasnySzary);
    border-radius: 25px;
    background-color: #F8F8F8;
}
.sixth-section-left-container {
    min-width: 360px; 
    flex-shrink: 0;
}
.omr-card {
    width: 100%;
}
.omr-inner-container {
    background-color: #f8f9fa;
    border: 2px solid #A9A9A9;
    border-radius: 20px;
    box-shadow: inset 6px 7px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px; 
    box-sizing: border-box;
    overflow: hidden; 
}
.omr-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}
.omr-number {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    width: 25px; 
    text-align: right;
    flex-shrink: 0; 
}
.bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #888;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}
.bubble:hover {
    border-color: var(--Niebieski, #1a73e8);
}
.bubble.active {
    background-color: var(--Niebieski, #1a73e8);
    border-color: var(--Niebieski, #1a73e8);
    box-shadow: none;
}
.bubble.gold-party {
    background-color: #FFD700 !important; 
    border-color: #DAA520 !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: waveJump 0.5s ease-in-out;
}
@keyframes waveJump {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.sixth-title-box {
    margin-bottom: 40px;
}
.sixth-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--Niebieski);
}
.sixth-right-content {
    display: flex;
    flex-direction: column;
    gap: 33px;
}
.sixth-section-right-container {
    display: flex;
    flex-direction: column;
}
.sixth-content-box {
    display: flex;
    flex-direction: row;
    align-items: start;
    padding-right: 20px;
    padding-left: 8px;
}
.sixth-right-rectangle {
    width: 60px;
    height: 60px;
    background: linear-gradient(-45deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}
.sixth-right-special-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 20px;
}
.sixth-right-subtitle {
    margin-bottom: 7px;
}
.sixth-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--Napisy);
}
.sixth-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--SzaryTeskt);
}

@media (max-width: 1200px) {
    .sixth-section-container {
        padding: 50px 40px;
        gap: 30px;
    }
    
    .sixth-title {
        font-size: 32px;
    }
}

@media (max-width: 950px) {
    .sixth-section {
        margin-top: 100px;
    }
    
    .sixth-section-container {
        flex-direction: column-reverse;
        padding: 40px 35px;
        gap: 40px;
    }
    
    .sixth-section-left-container {
        min-width: unset;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sixth-title-box {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sixth-section {
        margin-top: 80px;
    }
    
    .sixth-section-container {
        padding: 35px 25px;
        gap: 35px;
    }
    
    .sixth-title {
        font-size: 28px;
    }
    
    .sixth-title-box {
        margin-bottom: 30px;
    }
    
    .omr-inner-container {
        padding: 25px 15px;
    }
    
    .sixth-right-content {
        gap: 28px;
    }
    
    .sixth-content-box {
        padding-right: 15px;
        padding-left: 5px;
    }
    
    .sixth-right-rectangle {
        width: 55px;
        height: 55px;
    }
    
    .sixth-right-special-box {
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .sixth-section {
        margin-top: 60px;
        padding: 0 15px;
    }
    
    .sixth-section-container {
        padding: 25px 20px;
        gap: 30px;
        border: 3px solid var(--JasnySzary);
    }
    
    .sixth-section-left-container {
        max-width: 100%;
    }
    
    .omr-inner-container {
        padding: 20px 12px;
    }
    
    .omr-row {
        gap: 8px;
    }
    
    .omr-number {
        font-size: 16px;
        width: 22px;
    }
    
    .bubble {
        width: 26px;
        height: 26px;
        border: 1.5px solid #888;
    }
    
    .sixth-title {
        font-size: 24px;
    }
    
    .sixth-title-box {
        margin-bottom: 25px;
    }
    
    .sixth-right-content {
        gap: 24px;
    }
    
    .sixth-content-box {
        padding-right: 10px;
        padding-left: 3px;
    }
    
    .sixth-right-rectangle {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .sixth-right-special-box {
        padding-left: 15px;
    }
    
    .sixth-subtitle {
        font-size: 16px;
    }
    
    .sixth-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 360px) {
    .sixth-section {
        padding: 0 10px;
    }
    
    .sixth-section-container {
        padding: 20px 15px;
    }
    
    .omr-row {
        gap: 6px;
    }
    
    .omr-number {
        font-size: 14px;
        width: 20px;
    }
    
    .bubble {
        width: 22px;
        height: 22px;
    }
    
    .sixth-title {
        font-size: 22px;
    }
    
    .sixth-right-rectangle {
        width: 45px;
        height: 45px;
    }
}

/* Seventh section */

.seventh-section {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 150px;

    z-index: 2;
}

.seventh-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-right: 100px;
    margin-left: 100px;
}

.seventh-left-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 950px;
    height: 100%;
}

.seventh-left-box {
    display: flex;
    flex-direction: column;
    margin-right: 70px;
    padding: 65px 120px 100px 55px;

    border-radius: 24px;
    border: 4px solid var(--JasnySzary);
    background: var(--JasnyBiały);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.seventh-left-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--Napisy);
}

.seventh-left-subtitle-box {
    margin-top: 2px;
    margin-bottom: 50px;
}

.seventh-left-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--Fioletowy);
}

.seventh-left-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--SzaryTeskt);
}

.seventh-right-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 400px;
    height: 100%;
}

.seventh-right-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
    perspective: 1500px;
}

.document-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.document-slide.active {
    display: block;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {opacity: 0.4} 
    to {opacity: 1}
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.seventh-right-box:not(.stop-hover):hover .document-slide.active .flip-card-inner {
    transform: rotateY(180deg);
    transition-delay: 3s; /* Czas oczekiwania */
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: var(--Fioletowy, #6c63ff);
    width: 0%;
    transition: width 0s;
    z-index: 5;
    border-radius: 20px 20px 0 0;
}

.seventh-right-box:not(.stop-hover):hover .document-slide.active .loading-bar {
    width: 100%;
    transition: width 3s linear; /* Ten sam czas co wyżej */
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.flip-card-front {
    background: var(--JasnyBiały);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    border: 4px solid var(--JasnySzary);
    box-sizing: border-box;
}

.doc-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--Napisy, #333);
    margin-top: 20px;
}

.decorative-lines {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
}

.line {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    display: block;
}

.line.dashed {
    background-color: transparent;
    border-bottom: 3px dashed #ccc;
    height: 6px;
}

.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-80 { width: 80%; }
.w-90 { width: 90%; }

.doc-footer-deco {
    align-self: flex-end;
    margin-top: auto;
    margin-right: 50px;
    width: 80px;
    height: 6px;
    background-color: var(--Fioletowy, #7471D9);
    border-radius: 10px;
}

.flip-card-back {
    background: linear-gradient(135deg, #7471D9 0%, #3A2390 100%);
    color: var(--Platonic);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.back-content {
    text-align: center;
    padding: 30px;
    z-index: 2;
}

.icon-float {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.flip-card-back h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.flip-card-back p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.8;
}

.doc-link-btn.glow-effect {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: var(--CiemnyFioletowy1);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.doc-link-btn.glow-effect:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: transparent; 
    border: none;
    cursor: pointer;
    
    font-size: 40px; 
    color: #aaa;
    
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: transparent; 
    color: var(--Fioletowy, #6c63ff); 
    transform: translateY(-50%) scale(1.1); 
    transition: all 0.3s ease;
}

.slider-arrow.white-mode:hover {
    color: #f5f5f5 !important;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 30;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--Fioletowy, #6c63ff);
}

@media (max-width: 1440px) {
    .seventh-container {
        margin-right: 60px;
        margin-left: 60px;
    }

    .seventh-left-box {
        padding: 50px 80px 80px 45px;
        margin-right: 40px;
    }

    .seventh-left-title {
        font-size: 30px;
    }

    .seventh-left-subtitle {
        font-size: 18px;
    }

    .seventh-left-text {
        font-size: 16px;
    }

    .seventh-right-box {
        max-width: 450px;
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .seventh-container {
        margin-right: 40px;
        margin-left: 40px;
    }

    .seventh-left-box {
        padding: 40px 60px 70px 40px;
        margin-right: 30px;
    }

    .seventh-right-box {
        max-width: 400px;
        height: 480px;
    }

    .doc-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1024px) {
    .seventh-section {
        margin-top: 100px;
    }

    .seventh-container {
        flex-direction: column;
        margin-right: 30px;
        margin-left: 30px;
    }

    .seventh-left-container {
        width: 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }

    .seventh-left-box {
        margin-right: 0;
        padding: 40px 50px 60px 40px;
    }

    .seventh-left-title {
        font-size: 32px;
    }

    .seventh-left-subtitle {
        font-size: 18px;
    }

    .seventh-left-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .seventh-right-container {
        width: 100%;
        min-width: unset;
    }

    .seventh-right-box {
        max-width: 500px;
        height: 550px;
        margin: 0 auto;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .seventh-section {
        margin-top: 80px;
    }

    .seventh-container {
        margin-right: 20px;
        margin-left: 20px;
    }

    .seventh-left-box {
        padding: 35px 30px 50px 30px;
        border-width: 3px;
    }

    .seventh-left-title {
        font-size: 28px;
    }

    .seventh-left-subtitle {
        font-size: 17px;
    }

    .seventh-left-subtitle-box {
        margin-bottom: 35px;
    }

    .seventh-left-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .seventh-right-box {
        max-width: 100%;
        height: 500px;
    }

    .flip-card-front {
        padding: 50px 30px;
        border-width: 3px;
    }

    .doc-title {
        font-size: 26px;
        margin-bottom: 30px;
        margin-top: 15px;
    }

    .decorative-lines {
        width: 85%;
        gap: 10px;
    }

    .line {
        height: 5px;
    }

    .doc-footer-deco {
        margin-right: 30px;
        width: 70px;
        height: 5px;
    }

    .flip-card-back h3 {
        font-size: 24px;
    }

    .flip-card-back p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .icon-float {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}

@media (max-width: 600px) {
    .seventh-section {
        margin-top: 60px;
    }

    .seventh-container {
        margin-right: 15px;
        margin-left: 15px;
    }

    .seventh-left-container {
        margin-bottom: 40px;
    }

    .seventh-left-box {
        padding: 30px 25px 40px 25px;
    }

    .seventh-left-title {
        font-size: 26px;
    }

    .seventh-left-subtitle {
        font-size: 16px;
    }

    .seventh-left-subtitle-box {
        margin-bottom: 30px;
    }

    .seventh-left-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .seventh-right-box {
        height: 450px;
    }

    .flip-card-front {
        padding: 40px 25px;
    }

    .doc-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .decorative-lines {
        width: 90%;
        margin-top: 15px;
    }

    .back-content {
        padding: 25px;
    }

    .icon-float {
        font-size: 45px;
    }

    .flip-card-back h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .flip-card-back p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .doc-link-btn.glow-effect {
        padding: 12px 28px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .seventh-right-box:not(.stop-hover):hover .document-slide.active .flip-card-inner {
        transform: none;
        transition-delay: 0s;
    }

    .seventh-right-box:not(.stop-hover):hover .document-slide.active .loading-bar {
        width: 0%;
        transition: none;
    }

    .flip-card-inner.flipped {
        transform: rotateY(180deg) !important;
    }
    
    .flip-card {
        cursor: pointer;
    }
    
    .flip-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
}

@media (max-width: 480px) {
    .seventh-section {
        margin-top: 50px;
    }

    .seventh-container {
        margin-right: 10px;
        margin-left: 10px;
    }

    .seventh-left-box {
        padding: 25px 20px 35px 20px;
        border-radius: 20px;
    }

    .seventh-left-title {
        font-size: 24px;
    }

    .seventh-left-subtitle {
        font-size: 15px;
    }

    .seventh-left-subtitle-box {
        margin-bottom: 25px;
    }

    .seventh-left-text {
        font-size: 13px;
        line-height: 1.9;
    }

    .seventh-right-box {
        height: 400px;
    }

    .flip-card-front,
    .flip-card-back {
        border-radius: 20px;
    }

    .flip-card-front {
        padding: 35px 20px;
    }

    .doc-title {
        font-size: 22px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .decorative-lines {
        width: 90%;
        gap: 8px;
        margin-top: 10px;
    }

    .line {
        height: 4px;
    }

    .doc-footer-deco {
        margin-right: 20px;
        width: 60px;
        height: 4px;
    }

    .back-content {
        padding: 20px;
    }

    .icon-float {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .flip-card-back h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .flip-card-back p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .doc-link-btn.glow-effect {
        padding: 10px 24px;
        font-size: 13px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .prev-btn { left: 2px; }
    .next-btn { right: 2px; }

    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }

    .dot {
        height: 8px;
        width: 8px;
    }
}

@media (max-width: 360px) {
    .seventh-left-title {
        font-size: 22px;
    }

    .seventh-left-subtitle {
        font-size: 14px;
    }

    .seventh-left-text {
        font-size: 12px;
    }

    .seventh-right-box {
        height: 380px;
    }

    .doc-title {
        font-size: 20px;
    }

    .flip-card-front {
        padding: 30px 15px;
    }

    .back-content {
        padding: 15px;
    }

    .icon-float {
        font-size: 35px;
    }

    .flip-card-back h3 {
        font-size: 18px;
    }

    .doc-link-btn.glow-effect {
        padding: 9px 20px;
        font-size: 12px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .seventh-section {
        margin-top: 40px;
    }

    .seventh-right-box {
        height: 350px;
    }

    .seventh-left-box {
        padding: 20px 25px 30px 25px;
    }

    .flip-card-front {
        padding: 25px 20px;
    }

    .doc-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .decorative-lines {
        margin-top: 10px;
        gap: 6px;
    }
}

/* Eight section */

.eighth-section {
    display: flex;
    width: 100%;
    max-width: 1560px;
    margin: 175px auto 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.eighth-section-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}

.eighth-left-container {
    width: 45%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.eighth-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 80% center;
    border-radius: 25px 0px 0px 25px;
}

.eighth-right-container {
    display: flex;
    flex-direction: column;
    width: 55%;
    max-width: 800px;
    padding: 65px 80px 50px 55px;
    border: 4px solid var(--JasnySzary);
    border-left: none; 
    border-radius: 0px 25px 25px 0px;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

.eighth-title-box {
    margin-bottom: 40px;
}

.eighth-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--Niebieski);
    line-height: 1.3;
}

.eighth-content-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eighth-item-box {
    display: flex;
    flex-direction: row;
    align-items: start;
}

.eighth-item-rectangle {
    min-width: 60px;
    max-width: 60px;
    width: 60px;
    min-height: 60px;
    max-height: 60px;
    height: 60px;
    background: linear-gradient(-45deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.eighth-item-text-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 20px;
}

.eighth-item-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--Napisy);
    margin-bottom: 5px;
    line-height: 1.4;
}

.eighth-item-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--SzaryTeskt);
    line-height: 1.5;
}

@media (min-width: 1600px) {
    .eighth-right-container {
        padding: 70px 100px 60px 65px;
    }
}

@media (max-width: 1400px) {
    .eighth-right-container {
        padding: 60px 70px 50px 50px;
    }
    
    .eighth-title {
        font-size: 34px;
    }
}

@media (max-width: 1200px) {
    .eighth-left-container {
        width: 42%;
    }

    .eighth-right-container {
        width: 58%;
        max-width: 700px;
        padding: 50px 60px 45px 45px;
    }

    .eighth-title {
        font-size: 32px;
    }

    .eighth-content-container {
        gap: 25px;
    }

    .eighth-item-subtitle {
        font-size: 17px;
    }

    .eighth-item-text {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .eighth-section {
        margin-top: 100px;
    }

    .eighth-section-container {
        flex-direction: column;
    }

    .eighth-left-container {
        width: 100%;
        max-height: 400px;
    }

    .eighth-image {
        border-radius: 25px 25px 0px 0px;
        height: 100%;
    }

    .eighth-right-container {
        width: 100%;
        max-width: none;
        padding: 45px 60px 40px 60px;
        border: 4px solid var(--JasnySzary);
        border-top: none;
        border-radius: 0px 0px 25px 25px;
    }

    .eighth-title {
        font-size: 30px;
    }

    .eighth-title-box {
        margin-bottom: 35px;
    }

    .eighth-content-container {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .eighth-section {
        margin-top: 80px;
        padding: 0 15px;
    }

    .eighth-left-container {
        max-height: 300px;
    }

    .eighth-right-container {
        padding: 40px 35px 35px 35px;
    }

    .eighth-title {
        font-size: 28px;
    }

    .eighth-title-box {
        margin-bottom: 30px;
    }

    .eighth-content-container {
        gap: 24px;
    }

    .eighth-item-rectangle {
        min-width: 50px;
        max-width: 50px;
        width: 50px;
        min-height: 50px;
        max-height: 50px;
        height: 50px;
    }

    .eighth-item-text-box {
        padding-left: 16px;
    }

    .eighth-item-subtitle {
        font-size: 16px;
    }

    .eighth-item-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .eighth-section {
        margin-top: 60px;
    }

    .eighth-left-container {
        max-height: 250px;
    }

    .eighth-right-container {
        padding: 35px 25px 30px 25px;
    }

    .eighth-title {
        font-size: 26px;
    }

    .eighth-content-container {
        gap: 20px;
    }

    .eighth-item-rectangle {
        min-width: 48px;
        max-width: 48px;
        width: 48px;
        min-height: 48px;
        max-height: 48px;
        height: 48px;
    }

    .eighth-item-text-box {
        padding-left: 14px;
    }

    .eighth-item-subtitle {
        font-size: 15px;
    }

    .eighth-item-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eighth-section {
        margin-top: 60px;
        padding: 0 10px;
    }

    .eighth-right-container {
        padding: 30px 20px 25px 20px;
        border-radius: 0px 0px 20px 20px;
    }

    .eighth-image {
        border-radius: 20px 20px 0px 0px;
    }

    .eighth-title {
        font-size: 24px;
    }

    .eighth-content-container {
        gap: 18px;
    }

    .eighth-item-rectangle {
        min-width: 45px;
        max-width: 45px;
        width: 45px;
        min-height: 45px;
        max-height: 45px;
        height: 45px;
        border-radius: 8px;
    }

    .eighth-item-text-box {
        padding-left: 12px;
    }

    .eighth-item-subtitle {
        font-size: 14.5px;
    }

    .eighth-item-text {
        font-size: 13px;
    }
}

/* Ninth Section */

.ninth-section {
    display: flex;
    width: 100%;
    margin-top: 125px;
    margin-bottom: 50px;
    z-index: 2;
}

.process-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.step-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px; 
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--JasnyBiały, #fff);
    border: 2px solid var(--Niebieski, #3b82f6);
    border-radius: 16px;
    padding: 20px;
    aspect-ratio: 1 / 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.step-card:hover {
    border-color: var(--NiebieskiHover, #2563eb);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
}

.step-card.active {
    background: linear-gradient(135deg, var(--Niebieski, #3b82f6), var(--CiemnyFioletowy1, #1e40af));
    border-color: var(--CiemnyFioletowy1, #1e40af);
    transform: scale(1.02); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--Fioletowy, #4c1d95);
    margin-bottom: 15px;
    line-height: 1;
    transition: color 0.3s;
}

.step-card.active .step-number {
    color: rgba(255,255,255, 0.9);
}

.step-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--Napisy, #1f2937);
    line-height: 1.3;
    transition: color 0.3s;
}

.step-card.active .step-title {
    color: white;
}

.details-container {
    display: none;
    width: 100%;
    margin-top: 20px; 
    margin-bottom: 60px;
    position: relative;
}

.lines-layer {
    position: absolute;
    top: -50px; 
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.connections-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.connector-path {
    fill: none;
    stroke: var(--Niebieski, #3b82f6);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000; 
    stroke-dashoffset: 2000; 
    animation: drawLine 1.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.details-content {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 10px;
    position: relative;
    z-index: 5;
}

.info-box {
    flex: 1;
    background: var(--Platonic, #f3f4f6);
    border: 2px solid var(--JasnyNiebieski, #bfdbfe);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInBox 0.4s ease-out forwards;
    animation-delay: 0.3s;
}

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

.info-box h3 {
    margin-top: 0;
    color: var(--CiemnyNeibieski, #1e3a8a);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-box p {
    color: var(--SzaryTeskt, #4b5563);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .ninth-section {
        margin-top: 80px;
        margin-bottom: 40px;
    }
    
    .step-row {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .step-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .info-box {
        padding: 18px;
        max-width: 500px;
    }
    
    .info-box h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .details-content {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .step-card {
        padding: 10px;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .step-title {
        font-size: 0.85rem;
    }
    
    .info-box {
        padding: 16px;
        max-width: 450px;
    }
    
    .info-box h3 {
        font-size: 1rem;
    }
    
    .info-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .ninth-section {
        margin-top: 60px;
        margin-bottom: 30px;
    }
    
    .process-wrapper {
        width: 95%;
    }
    
    .step-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .step-card {
        padding: 12px;
        border-radius: 10px;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .details-container {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    
    .lines-layer {
        top: -30px;
        height: 60px;
    }
    
    .details-content {
        flex-direction: column;
        gap: 15px;
        padding-top: 5px;
    }
    
    .info-box {
        max-width: 100%;
        padding: 20px;
    }
    
    .info-box h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .info-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .ninth-section {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .step-row {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .step-card {
        padding: 10px;
        border-radius: 8px;
        border-width: 2px;
    }
    
    .step-card:hover {
        transform: translateY(-3px);
    }
    
    .step-number {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .step-title {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .details-container {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    
    .lines-layer {
        top: -25px;
        height: 50px;
    }
    
    .connector-path {
        stroke-width: 3px;
    }
    
    .info-box {
        padding: 15px;
        border-radius: 12px;
    }
    
    .info-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .info-box p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .details-content {
        gap: 12px;
    }
}

/* Tenth section */

.konkurs-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 20px 0;

    z-index: 2;
}

.konkurs-header {
    padding-left: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--Napisy);
    margin-bottom: 15px;
}

.konkurs-container-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.konkurs-container-link:hover {
    transform: translateY(-3px);
}

.konkurs-container-link:hover .konkurs-card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--Niebieski);
}

.konkurs-container-link:hover .date-box {
    background-color: var(--Niebieski);
}

.konkurs-container-link:hover .date-number,
.konkurs-container-link:hover .date-month {
    color: #ffffff;
}

.konkurs-card {
    background-color: #ffffff;
    border: 2px solid var(--CiemnyFioletowy1);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--SzaryTeskt);
    margin: 0 0 15px 0;
}

.card-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--JasnoSzaryTekst);
    margin: 0;
    text-align: justify;
}

.date-box {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border: 2px solid var(--Niebieski);
    border-radius: 20px;
    background-color: var(--JasnyBiały);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
}

.date-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--Napisy);
    line-height: 1;
    margin-bottom: 5px;
}

.date-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--Napisy);
}

@media screen and (max-width: 1500px) {
    .konkurs-container {
        padding: 20px 40px;
    }
}

@media screen and (max-width: 1200px) {
    .konkurs-container {
        padding: 20px 35px;
    }
}

@media screen and (max-width: 1024px) {
    .konkurs-container {
        padding: 20px 30px;
    }
}

@media screen and (max-width: 768px) {
    .konkurs-container {
        padding: 20px 25px;
        margin-top: 40px;
    }

    .konkurs-header {
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .konkurs-card {
        padding: 25px;
        gap: 25px;
    }
}

@media screen and (max-width: 650px) {
    .konkurs-container {
        padding: 20px 20px;
    }

    .konkurs-card {
        flex-direction: column;
        align-items: stretch;
        padding: 25px 20px;
    }

    .card-content {
        text-align: center;
    }

    .card-description {
        text-align: center;
    }

    .date-box {
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .konkurs-container {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .konkurs-header {
        font-size: 20px;
    }

    .konkurs-card {
        padding: 20px 18px;
        gap: 20px;
        border-radius: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    .date-box {
        width: 120px;
        height: 120px;
    }

    .date-number {
        font-size: 36px;
    }

    .date-month {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .konkurs-container {
        padding: 20px 12px;
    }

    .konkurs-card {
        padding: 18px 15px;
    }

    .card-title {
        font-size: 17px;
    }

    .date-box {
        width: 110px;
        height: 110px;
    }

    .date-number {
        font-size: 32px;
    }
}

/* Secion eleventh */

.eleventh-section {
    display: flex;
    width: 100%;
    margin-top: 130px;
    margin-bottom: 20px;

    z-index: 2;
}

.newsletter-container {
    width: 100%;
    margin: 0;
    padding: 40px 20px;
    font-family: sans-serif;
    box-sizing: border-box;
}

.newsletter-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--CiemnyFioletowy1) 0%, var(--Niebieski) 100%);
    border-radius: 40px;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(58, 35, 144, 0.2);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    background-color: rgba(255, 255, 255, 0.15);
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 150px;
    left: 50px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -80px;
    background-color: rgba(255, 255, 255, 0.08);
}

.circle-4 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: 100px;
}

.newsletter-header {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-desc {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto 40px auto;
    opacity: 0.95;
}

.newsletter-form {
    margin: 0 auto 45px auto;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.input-row {
    display: flex;
    gap: 20px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    background-color: var(--JasnyBiały);
    color: var(--SzaryTeskt);
    outline: none;
}

.email-input:focus {
    box-shadow: 0 0 0 2px var(--JasnyNiebieski);
}

.submit-btn {
    padding: 15px 30px;
    background-color: var(--Napisy);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #0f112e;
}

.form-error {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 5px 0 15px 0;
    font-size: 14px;
    color: var(--CiemnyNeibieski);
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
    animation: slideIn 0.3s ease-out;
    font-weight: 600;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-error::before {
    content: "!";
    margin-right: 8px;
    font-size: 16px;
    color: var(--Napisy);
}

.newsletter-legal {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.legal-link {
    color: #4fffc0;
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .eleventh-section {
        margin-top: 100px;
    }

    .newsletter-container {
        padding: 30px 15px;
    }

    .newsletter-card {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .newsletter-header {
        font-size: 32px;
    }

    .newsletter-desc {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .circle-1 {
        width: 180px;
        height: 180px;
        top: -40px;
        left: -40px;
    }

    .circle-3 {
        width: 250px;
        height: 250px;
        top: -40px;
        right: -60px;
    }

    .circle-4 {
        width: 130px;
        height: 130px;
        bottom: -30px;
        right: 80px;
    }
}

@media (max-width: 900px) {
    .newsletter-card {
        padding: 35px 20px;
    }

    .newsletter-header {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .newsletter-desc {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 25px;
        max-width: 90%;
    }

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

    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .input-row {
        gap: 12px;
    }

    .email-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .newsletter-legal {
        font-size: 12px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 auto;
    }

    .legal-link {
        font-size: 12px;
    }

    .circle-1 {
        width: 140px;
        height: 140px;
        top: -30px;
        left: -30px;
    }

    .circle-2 {
        width: 70px;
        height: 70px;
        top: 100px;
        left: 25px;
    }

    .circle-3 {
        width: 180px;
        height: 180px;
        top: -30px;
        right: -45px;
    }

    .circle-4 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: 40px;
    }
}

@media (max-width: 800px) {
    .newsletter-card {
        padding: 30px 15px;
    }

    .newsletter-header {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .newsletter-desc {
        font-size: 13px;
        margin-bottom: 20px;
        max-width: 85%;
    }

    .content-wrapper {
        max-width: 95%;
    }

    .input-row {
        gap: 10px;
    }

    .email-input {
        padding: 11px 14px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 11px 20px;
        font-size: 14px;
    }

    .circle {
        display: none;
    }
}

@media (max-width: 768px) {
    .eleventh-section {
        margin-top: 80px;
        margin-bottom: 15px;
    }

    .newsletter-container {
        padding: 25px 10px;
    }

    .newsletter-card {
        padding: 40px 15px;
        border-radius: 25px;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .newsletter-header {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .newsletter-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .newsletter-form {
        margin-bottom: 25px;
    }

    .input-row {
        gap: 15px;
    }

    .email-input,
    .submit-btn {
        padding: 13px 18px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 13px 25px;
    }

    .newsletter-legal {
        font-size: 12px;
    }

    .legal-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eleventh-section {
        margin-top: 60px;
        margin-bottom: 10px;
    }

    .newsletter-container {
        padding: 20px 5px;
    }

    .newsletter-card {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .newsletter-header {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .newsletter-desc {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

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

    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .input-row {
        flex-direction: column;
        gap: 12px;
    }

    .email-input {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 10px;
    }

    .newsletter-legal {
        font-size: 11px;
        line-height: 1.5;
    }

    .legal-link {
        font-size: 12px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 360px) {
    .newsletter-container {
        padding: 15px 5px;
    }

    .newsletter-card {
        padding: 25px 12px;
        border-radius: 18px;
    }

    .newsletter-header {
        font-size: 22px;
    }

    .newsletter-desc {
        font-size: 12px;
    }

    .email-input,
    .submit-btn {
        padding: 12px 14px;
        font-size: 14px;
    }

    .newsletter-legal {
        font-size: 10px;
    }

    .legal-link {
        font-size: 11px;
    }

}

/* Twelfth section */
.twelfth-section {
    width: 100%;
    margin-top: 70px;
    padding: 40px;
    background-color: transparent;
    box-sizing: border-box;
    z-index: 2;
}

.twelfth-container {
    max-width: none;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* --- Lewa Karta (Niebieska) --- */
.twelfth-info-card {
    background: linear-gradient(135deg, var(--CiemnyFioletowy1) 0%, var(--Niebieski) 100%);
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Ozdobne kółka */
.twelfth-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.twelfth-circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: 20px;
}

.twelfth-circle-2 {
    width: 180px;
    height: 180px;
    top: 45%;
    right: -50px;
}

.twelfth-circle-3 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: 60px;
}

/* Treść lewej karty */
.twelfth-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.twelfth-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.twelfth-step-item {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

.twelfth-icon-box {
    width: 20px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    flex-shrink: 0;
}

.twelfth-step-content {
    padding: 5px 0;
}

.twelfth-step-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.twelfth-step-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 95%;
}

/* --- Prawa Karta (Formularz) --- */
.twelfth-form-card {
    background-color: var(--JasnyBiały);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.1);
    border: 4px solid var(--JasnySzary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 550px;
    height: 100%;
    margin: 0 auto;
}

.twelfth-form-title {
    color: var(--SzaryTeskt);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.twelfth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.twelfth-input-group {
    text-align: left;
    width: 100%;
}

.twelfth-instruction {
    color: var(--JasnoSzaryTekst);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    display: block;
}

.twelfth-input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid var(--CiemnyFioletowy1);
    background-color: rgba(230, 230, 250, 0.2);
    font-size: 1rem;
    color: var(--SzaryTeskt);
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s;
}

.twelfth-input:focus {
    border-color: var(--Niebieski);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.twelfth-btn {
    background-color: var(--CiemnyNeibieski);
    color: #fff;
    border: none;
    padding: 18px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
    align-self: center;
    transition: background-color 0.3s, transform 0.2s;
    min-width: 200px;
}

.twelfth-btn:hover {
    background-color: var(--NiebieskiHover);
    transform: translateY(-2px);
}

/* --- RESPONSIVE STYLES --- */

/* Duże tablety i mniejsze desktopy (do 1200px) */
@media (max-width: 1200px) {
    .twelfth-section {
        padding: 35px 30px;
        margin-top: 60px;
    }

    .twelfth-container {
        gap: 50px;
    }

    .twelfth-info-card {
        padding: 50px 40px;
    }

    .twelfth-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .twelfth-steps {
        gap: 35px;
    }

    .twelfth-step-content h3 {
        font-size: 22px;
    }

    .twelfth-step-content p {
        font-size: 15px;
    }

    .twelfth-form-card {
        padding: 50px 40px;
        max-width: 500px;
    }

    .twelfth-form-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .twelfth-form {
        gap: 25px;
    }

    .twelfth-input {
        padding: 16px 22px;
    }

    .twelfth-btn {
        padding: 16px 50px;
        font-size: 1rem;
    }
}

/* Przejście na layout pionowy (do 1100px) */
@media (max-width: 1100px) {
    .twelfth-section {
        padding: 30px 25px;
        margin-top: 50px;
    }

    .twelfth-container {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .twelfth-info-card {
        padding: 50px 40px;
        height: auto;
    }

    .twelfth-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .twelfth-steps {
        gap: 35px;
    }

    .twelfth-step-item {
        gap: 22px;
    }

    .twelfth-icon-box {
        width: 18px;
    }

    .twelfth-step-content h3 {
        font-size: 22px;
    }

    .twelfth-step-content p {
        font-size: 15px;
        max-width: 100%;
    }

    .twelfth-form-card {
        padding: 50px 40px;
        max-width: 650px;
        margin: 0 auto;
    }

    .twelfth-form-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }
}

/* Tablety (do 768px) */
@media (max-width: 768px) {
    .twelfth-section {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .twelfth-container {
        gap: 30px;
    }

    .twelfth-info-card {
        padding: 40px 30px;
    }

    .twelfth-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .twelfth-steps {
        gap: 28px;
    }

    .twelfth-step-item {
        gap: 18px;
    }

    .twelfth-icon-box {
        width: 16px;
    }

    .twelfth-step-content h3 {
        font-size: 19px;
    }

    .twelfth-step-content p {
        font-size: 14px;
    }

    .twelfth-circle-1 {
        width: 220px;
        height: 220px;
        top: -60px;
    }

    .twelfth-circle-2 {
        width: 130px;
        height: 130px;
    }

    .twelfth-circle-3 {
        width: 150px;
        height: 150px;
        bottom: -30px;
    }

    .twelfth-form-card {
        padding: 40px 30px;
        max-width: 550px;
        box-shadow: 0px 12px 30px rgba(0,0,0,0.08);
    }

    .twelfth-form-title {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .twelfth-form {
        gap: 22px;
    }

    .twelfth-input {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .twelfth-btn {
        padding: 15px 45px;
        font-size: 0.95rem;
        margin-top: 15px;
        min-width: 180px;
    }
}

/* Telefony (do 576px) */
@media (max-width: 576px) {
    .twelfth-section {
        padding: 20px 15px;
        margin-top: 35px;
    }

    .twelfth-container {
        gap: 25px;
    }

    .twelfth-info-card {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .twelfth-title {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .twelfth-steps {
        gap: 25px;
    }

    .twelfth-step-item {
        gap: 15px;
    }

    .twelfth-icon-box {
        width: 14px;
        border-radius: 8px;
    }

    .twelfth-step-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .twelfth-step-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .twelfth-circle-1 {
        width: 180px;
        height: 180px;
        top: -50px;
    }

    .twelfth-circle-2 {
        width: 110px;
        height: 110px;
    }

    .twelfth-circle-3 {
        width: 130px;
        height: 130px;
    }

    .twelfth-form-card {
        padding: 35px 25px;
        border-radius: 25px;
        border: 3px solid var(--JasnySzary);
        max-width: 100%;
    }

    .twelfth-form-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .twelfth-form {
        gap: 20px;
    }

    .twelfth-instruction {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .twelfth-input {
        padding: 14px 18px;
        border-radius: 10px;
    }

    .twelfth-btn {
        padding: 14px 40px;
        font-size: 0.9rem;
        border-radius: 10px;
        min-width: 160px;
    }
}

/* Małe telefony (do 480px) */
@media (max-width: 480px) {
    .twelfth-section {
        padding: 18px 12px;
        margin-top: 30px;
    }

    .twelfth-container {
        gap: 20px;
    }

    .twelfth-info-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .twelfth-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .twelfth-steps {
        gap: 22px;
    }

    .twelfth-step-item {
        gap: 12px;
    }

    .twelfth-icon-box {
        width: 12px;
        border-radius: 6px;
    }

    .twelfth-step-content {
        padding: 3px 0;
    }

    .twelfth-step-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .twelfth-step-content p {
        font-size: 12.5px;
    }

    .twelfth-circle-1 {
        width: 150px;
        height: 150px;
    }

    .twelfth-circle-2 {
        width: 90px;
        height: 90px;
    }

    .twelfth-circle-3 {
        width: 110px;
        height: 110px;
    }

    .twelfth-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .twelfth-form-title {
        font-size: 1.2rem;
        margin-bottom: 22px;
    }

    .twelfth-form {
        gap: 18px;
    }

    .twelfth-instruction {
        font-size: 0.75rem;
    }

    .twelfth-input {
        padding: 13px 16px;
        font-size: 0.9rem;
    }

    .twelfth-btn {
        padding: 13px 35px;
        font-size: 0.85rem;
        margin-top: 10px;
        min-width: 140px;
    }
}

/* Bardzo małe ekrany (do 360px) */
@media (max-width: 360px) {
    .twelfth-section {
        padding: 15px 10px;
        margin-top: 25px;
    }

    .twelfth-info-card {
        padding: 25px 18px;
    }

    .twelfth-title {
        font-size: 19px;
        margin-bottom: 25px;
    }

    .twelfth-steps {
        gap: 20px;
    }

    .twelfth-step-content h3 {
        font-size: 16px;
    }

    .twelfth-step-content p {
        font-size: 12px;
    }

    .twelfth-form-card {
        padding: 25px 18px;
    }

    .twelfth-form-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .twelfth-input {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .twelfth-btn {
        padding: 12px 30px;
        font-size: 0.8rem;
        width: 100%;
        min-width: unset;
    }
}

/* Thirteenth section */

.thirteenth-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    min-height: 669px;
    background-color: var(--Tło);
    cursor: default;
    z-index: 2;
}

.thirteenth-section-image {
    width: 39%;
    display: flex;
    flex-direction: column;
}

.main-help p, .second-help p {
    font-family: 'Inter';
    font-style: normal;
}

.main-help p {
    color: var(--Napisy);
    width: 345px;
    height: 58px;
    margin: 9% 0 0 20%;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
}

.second-help p {
    color: var(--Fioletowy);
    width: 149px;
    height: 30px;
    margin: 8px 0 0 43%;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}

.thirteenth-section-image img {
    width: 500px;
    height: 500px;
    margin-left: 16%;
}

.thirteenth-section-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 61%;
    cursor: default;
    gap: 24px;
}

.thirteenth-section-accordion {
    width: 70%;
    margin: 0;
    padding: 0;
    border-radius: 15px;
    border: 2px solid var(--JasnySzary);
    background-color: var(--Platonic);
    overflow: hidden;
}

.thirteenth-section-accordion header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    transition: all 0.2s linear;
}

.thirteenth-section-accordion .title {
    padding: 0 60px 0 42px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: var(--Napisy);
    margin: 0;
}

.arrow {
    margin-right: 45px;
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    flex-shrink: 0;
    border-right: 2px solid var(--Napisy);
    border-bottom: 2px solid var(--Napisy);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.thirteenth-section-accordion.active .arrow {
    transform: rotate(225deg);
    border-color: var(--Fioletowy);
}

.thirteenth-section-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

.thirteenth-section-accordion.active .thirteenth-section-content {
    max-height: 200px;
    opacity: 1;
}

.thirteenth-section-description {
    width: 90%;
    margin: 0 0 21px 42px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--Napisy);
    padding-top: 5px;
}

.thirteenth-section-help {
    display: flex;
    width: 70%;
    margin: 20px auto 0 auto;
    padding-right: 30px;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.1rem;
}

.thirteenth-section-help a {
    text-decoration: none;
    color: var(--Tło);
    margin-bottom: 50px;
}

.thirteenth-section-help a:hover {
    color: #060829;
}

@media (max-width: 1300px) {
    .thirteenth-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .thirteenth-section-image {
        width: 100%;
        align-items: center;
        margin-bottom: 40px;
    }

    .thirteenth-section-image img {
        display: none;
    }

    .main-help p {
        width: auto;
        height: auto;
        margin: 0 auto 10px auto;
        text-align: center;
        font-size: 36px;
        line-height: 44px;
    }

    .second-help p {
        width: auto;
        height: auto;
        margin: 0 auto;
        text-align: center;
        font-size: 20px;
        line-height: 26px;
    }

    .thirteenth-section-information {
        width: 100%;
    }

    .thirteenth-section-accordion {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    .thirteenth-section-help {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .main-help p {
        font-size: 32px;
        line-height: 38px;
    }

    .second-help p {
        font-size: 18px;
        line-height: 24px;
    }

    .thirteenth-section-accordion {
        width: 95%;
    }

    .thirteenth-section-help {
        width: 95%;
    }
}

@media (max-width: 550px) {
    .thirteenth-section-accordion .title {
        font-size: 0.95rem;
        padding-left: 25px;
        padding-right: 50px;
        line-height: 20px;
    }

    .arrow {
        margin-right: 25px;
    }
}

@media (max-width: 450px) {
    .main-help p {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 8px;
    }

    .second-help p {
        font-size: 16px;
        line-height: 20px;
    }

    .thirteenth-section-accordion {
        width: 95%;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .thirteenth-section-accordion .title {
        font-size: 0.9rem;
        padding-left: 15px;
        padding-right: 40px;
    }

    .thirteenth-section-description {
        font-size: 14px;
        margin-left: 15px;
    }

    .arrow {
        margin-right: 15px;
    }

    .thirteenth-section-help {
        width: 95%;
        padding-right: 15px;
    }
}

/* FOOTER */

.platonic-footer {
    background: linear-gradient(
        90deg, 
        var(--Niebieski) 0%, 
        var(--CiemnyFioletowy1) 32%, 
        var(--CiemnyFioletowy1) 66%, 
        var(--Niebieski) 100%
    );
    color: var(--Platonic);
    padding: 30px 60px 20px 60px;
    width: 100%;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 200px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 0 0 auto; 
    margin-right: 40px;
}

.logo-box {
    background-color: var(--JasnyBiały);
    color: var(--Napisy);
    display: inline-flex;
    align-items: center;
    padding: 15px 30px 15px 15px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-img {
    height: 64px;
    width: auto;
    margin-right: 7px;
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--Napisy);
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--Platonic);
}

.contact-info a {
    margin-left: 10px;

    font-size: 18px;
    font-weight: 500;
    color: var(--Platonic);
    text-decoration: none;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 60px;
    padding-top: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.link-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--Platonic);
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.link-column ul li a:hover {
    color: var(--Platonic);
    text-decoration: underline;
}

.site-rights {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.site-rights-p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .platonic-footer {
        padding: 30px 40px 20px 40px;
    }

    .footer-top {
        gap: 80px;
    }

    .footer-links {
        gap: 40px;
    }

    .logo-text {
        font-size: 24px;
    }

    .contact-info h3 {
        font-size: 20px;
    }

    .contact-info a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .platonic-footer {
        padding: 25px 30px 15px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        margin-right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-box {
        margin-bottom: 20px;
    }

    .contact-info {
        width: 100%;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        gap: 30px;
        padding-top: 0;
    }

    .link-column {
        text-align: center;
        min-width: 150px;
    }

    .link-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .platonic-footer {
        padding: 20px 20px 15px 20px;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 40px;
    }

    .logo-box {
        padding: 12px 25px 12px 12px;
        font-size: 20px;
    }

    .logo-img {
        height: 48px;
    }

    .logo-text {
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .contact-info a {
        font-size: 14px;
        margin-left: 0;
        display: block;
        margin-top: 5px;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .link-column {
        width: 100%;
    }

    .link-column h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .link-column ul li {
        margin-bottom: 10px;
    }

    .link-column ul li a {
        font-size: 13px;
    }

    .site-rights {
        margin-top: 30px;
        padding-top: 15px;
    }

    .site-rights-p {
        font-size: 11px;
    }
}