.about-container {
    display: grid;
    grid-template-columns: 32% 36% 32%;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.center-column {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100vh;
    width: 100%;
}

.about-image {
    width: auto;
    height: 70%;
    max-height: 930px;
    z-index: 0;
    position: relative;
    filter: drop-shadow(0 0 500px rgba(255, 115, 0, 0.6));
    transition: all 0.5s ease-in-out;
    user-select: none;
    animation: aboutImageGlow1 6s infinite ease-in-out;
}

@keyframes aboutImageGlow1 {
    0%, 100% {
        filter: drop-shadow(0 0 500px rgba(255, 115, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 500px rgba(255, 115, 0, 0.8));
    }
}

.about-image:hover {
    transform: scale(1.02);
}

#halo-container {
    position: absolute;
    top: 15%;
    width: 600px;
    height: 250px;
    z-index: 5;
    transition: all 0.3s ease-in-out;
}

#halo-container:hover {
    transform: scale(1.1);
}

.side-column {
    padding: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.about-left-column {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-left: 175px;
    flex-direction: column;
    text-align: justify;
}

#about-title {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-separator {
    width: 100%;
    height: 0;
    border-bottom: 1px dashed white;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

/* Stylowanie stronicowania */
.pagination-container {
    width: 100%;
    position: relative;
    min-height: 400px;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 15px 0;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-indicators {
    display: flex;
    gap: 10px;
}

.page-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.5);
}

.page-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.about-right-column {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-right: 175px;
    flex-direction: column;
    text-align: justify;
}

.about-right-text {
    line-height: 1.6;
    font-size: 16px;
    height: 379px;
}

/* Mobile Combined Pagination */
.mobile-combined-pagination {
    display: none;
    width: 100%;
    padding: 20px;
}

.combined-pagination-container {
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
}

.combined-page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.combined-page.active {
    display: block;
}

.combined-section {
    text-align: justify;
}

.combined-title {
    font-size: 2.5rem;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.combined-text {
    line-height: 1.6;
    font-size: 16px;
    min-height: 200px;
}

/* Responsywność */
@media (max-width: 1920px) {
    .about-image {
        filter: drop-shadow(0 0 300px rgba(255, 115, 0, 0.7));
        animation: aboutImageGlow2 6s infinite ease-in-out;
    }

    @keyframes aboutImageGlow2 {
        0%, 100% {
            filter: drop-shadow(0 0 300px rgba(255, 115, 0, 0.7));
        }
        50% {
            filter: drop-shadow(0 0 300px rgba(255, 115, 0, 0.9));
        }
    }

    .about-left-column {
        padding-left: 125px;
    }

    .about-right-column {
        padding-right: 125px;
    }
}

@media (max-width: 1919px) {
    .about-left-column {
        padding-left: 100px;
    }

    .about-right-column {
        padding-right: 100px;
    }

    #halo-container {
        width: 500px;
        height: 200px;
    }
}

@media (max-width: 1609px) {
    .about-container {
        grid-template-columns: 34% 32% 34%;
    }

    .about-left-text, .about-right-text {
        font-size: 14px;
    }
}

@media (max-width: 1493px) {
    .about-left-column {
        padding-left: 60px;
    }

    .about-right-column {
        padding-right: 60px;
    }

    .about-left-text, .about-right-text {
        font-size: 13px;
    }

    .about-left-text {
        height: 250px;
    }

    .about-right-text {
        height: 290px;
    }

    .pagination-controls {
        min-height: 0;
    }

    .about-container {
        grid-template-columns: 37% 26% 37%;
    }

    .about-image-container {
        height: 70vh;
    }

    #halo-container {
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #halo-container canvas {
        width: 60% !important;
        height: auto !important;
        aspect-ratio: 500 / 200;
    }
}

@media (max-width: 992px) {
    .about-left-column {
        padding-left: 15px;
    }

    .about-right-column {
        padding-right: 15px;
    }

    .side-column {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-left-text, .about-right-text {
        font-size: 11px;
    }

    .about-left-text {
        height: 210px;
    }

    .about-right-text {
        height: 272px;
    }

    .pagination-container {
        min-height: min-content;
    }

    #about-title {
        font-size: 2.5rem;
    }

    #halo-container {
        width: 400px;
        height: 150px;
    }

    .about-image {
        height: 60%;
        filter: drop-shadow(0 0 300px rgba(255, 115, 0, 1));
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }

    .combined-text {
        font-size: 11px;
        height: 30vh;
        min-height: auto;
    }

    .side-column {
        display: none;
    }

    .center-column {
        order: 1;
        height: 50vh;
        min-height: 400px;
    }

    .about-image-container {
        height: 50vh;
        min-height: auto;
    }

    .about-image {
        max-height: 400px;
        filter: drop-shadow(0 0 200px rgba(255, 115, 0, 1));
        animation: aboutImageGlow3 6s infinite ease-in-out;
    }

    @keyframes aboutImageGlow3 {
        0%, 100% {
            filter: drop-shadow(0 0 200px rgba(255, 115, 0, 1));
        }
        50% {
            filter: drop-shadow(0 0 175px rgba(255, 115, 0, 1));
        }
    }

    #halo-container {
        width: 300px;
        height: 120px;
        top: 20%;
    }

    .mobile-combined-pagination {
        display: block;
        height: 50vh;
    }

    .combined-controls {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .about-separator {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .center-column {
        height: 40vh;
        min-height: 300px;
    }

    .about-image {
        height: 27vh;
        max-height: 350px;
        filter: drop-shadow(0 -20px 120px rgba(255, 115, 0, 1));
        animation: aboutImageGlow4 6s infinite ease-in-out;
    }

    @keyframes aboutImageGlow4 {
        0%, 100% {
            filter: drop-shadow(0 -20px 120px rgba(255, 115, 0, 1));
        }
        50% {
            filter: drop-shadow(0 -20px 105px rgba(255, 115, 0, 1));
        }
    }

    #halo-container {
        width: 250px;
        height: 100px;
        top: 25%;
    }

    .mobile-combined-pagination {
        height: 45vh;
        padding: 15px;
    }

    .combined-title {
        font-size: 2rem;
    }

    .pagination-controls {
        gap: 15px;
        margin-top: 30px;
    }

    .pagination-btn {
        width: 35px;
        height: 35px;
    }

    .page-indicators {
        gap: 8px;
    }

    .page-indicator {
        width: 8px;
        height: 8px;
    }
}

.about-text-btn-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 10px;
}

.about-text-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-text-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.clickable-company {
    cursor: pointer;
    color: #ffaa33;
    transition: all 0.3s ease;
    font-weight: 600;
}

.clickable-company:hover {
    color: #d18c2b;
}

.about-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0 !important;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Responsywność */
@media (max-width: 480px) {
    .about-particles-canvas {
        opacity: 0.5;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-particles-canvas {
        opacity: 0.6;
    }
}

@media (min-width: 1025px) {
    .about-particles-canvas {
        opacity: 0.8;
    }
}