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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFF;
    background-blend-mode: normal, normal;
    background-color: #000;
    background-image: url('img/public.webp'), linear-gradient(90deg, #5c43d240 0%, #00000038 25%, #00000040 50%, #00000038 75%, #5c43d240 100%);
    background-size: 957.5px 960px, auto;
    border-radius: 0;
    margin: 0 auto;
    position: relative;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111;
    padding: 10px 40px;
    color: white;
    margin-top: 40px;
}

header.sticky {
    margin-top: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

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

.logo img {
    height: 50px;
}

nav .menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 5px;
    padding: 0 20px;
}

nav .menu li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-decoration: none;
    padding-bottom: 3px;
}

nav .menu li a:hover {
    border-bottom: 2px solid #5c43d2;
}

.gt-list li:hover {
    color: #111;
    padding-left: 20px;
}



nav .menu li a.active{
    border-bottom: 2px solid #5c43d2;
}


.footer {
    text-align: center;
}

.footer-content {
    background: #5c43d2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 50px 0;
}

.footer-content .social-media {
    display: flex;
    gap: 10px;
}

.footer-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;

}

.footer-content .footer-column-1,
.footer-content .footer-column-2,
.footer-content .footer-column-3 {
    width: calc((100% / 3) - 60px);
    text-align: left;
}

.footer-content .footer-column-1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-content .footer-header {
    font-size: 24px;
    margin-bottom: 30px;
}

.footer .copyright {
    padding: 30px 0;
}


.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px; /* dodaje odstęp po bokach na małych ekranach */
}

.btn-primary {
    color: #FFF;
    background-color: #5c43d2;
    border-radius: 100px;
    border: 0;
    padding: 13px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    width: auto;
}

a.btn-primary {
    text-decoration: none;
    padding: 16px 40px;
}

.btn-primary:hover {
    opacity: 0.8;
}

.font-bold {
    font-weight: 700;
}

.text-main-color {
    color: #5c43d2 !important;
}

section.information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    text-align: center;
    width: 100%;
    margin: 80px auto;

}



section.information h2 {
    font-size: 72px;
    font-weight: 700;
}

section.information .subtitle {
    font-size: 24px;
    font-weight: 500;
}

section.information .btn-primary {
    margin-top: 60px;
}

section.about-us {
    background: white;
    color: #000;
    padding: 40px;
}

section.about-us .about-us-content {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.about-us-content  .left-content {
    width: 60%;
}

.about-us-content .left-content img {
    width:100%;
}

.about-us-content .right-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 40%;
}

.about-us-content .right-content .title {
    font-size: 48px;
    font-weight: 500;
}

.about-us-content .right-content .description {
    font-size: 14px;
    line-height: 24px;
}

.flex {
    display: flex;
}

.gap-3 {
    gap: 12px;
}

.mb-5 {
    margin-bottom: 20px;
}

.align-center {
    align-items: center;
}

.gt-list {
    list-style: none;
    padding-left: 1em;
}

.gt-list li {
    margin-bottom: 20px;
}

.gt-list a {
    color: #FFF;
    text-decoration: none;
}

.gt-list li::before {
    content: ">";
    margin-right: 0.5em;
    color: #FFF;
}

.gt-list li:hover::before {
    color: #111;
}

.items-grid {
    display: grid;
    gap: 20px;
    row-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 50px 50px;
}

.items-grid .item {
    border-right: 1px solid white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-right: 20px;
}


.items-grid .item .icon {

}

.items-grid .item .item-header {
    font-size: 48px;
    font-weight: 500;
}

.items-grid .item .item-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.services-button {
    margin: 30px 0;
    text-align: center;
}

.contact-form-content {
    display: flex;
    margin-bottom: 20px;
    padding-top: 80px;
}

.contact-form-content .contact-form-header {
    font-size: 48px;
    margin-right: 100px;
    text-align: center
}

.header-section {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}


.contact-form-content .content-left .form-img {
    width: 100%;
    border-radius: 10px;
    padding: 20px 0;
}

.contact-form-content .content-right {
    margin-left: -150px;
    width: calc(50% + 100px);
    background: #111;
    height: fit-content;
    border-radius: 10px;
}


.content-form form input,
.content-form form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ffffff1a;
    background-color: #111;
    color: #FFF;
    padding: 15px;
    margin-bottom: 40px;
    outline: unset;
    font-weight: 300;
    font-size: 12px;
    font-family: Plus Jakarta Sans;
    letter-spacing: 1.5px;
}

input::placeholder,
textarea::placeholder {
    color: #FFF;

}

.contact-form-content .content-right .content-form {
    padding: 70px;
}

.contact-form-button {
    margin-top: 20px;
}

.container-services {
    padding-top: 80px;
}

.container-contact-form {
    padding-top: 0;
}

.container-packages .packages-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.options-container .package-content {
    width: 100%;
    background: #FFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #666;
}

.container-packages {
    margin-bottom: 40px;
}

.package-content .package-header {
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 20px;
}

.package-header  .title {
    padding: 20px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
}

.package-header .subtitle {
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.package-first .package-header {
    background: #f4f4f4;
}

.package-first .title {
    color: #111;
}

.package-first .subtitle {
    color: #5c43d2
}

.package-secondary .package-header {
    background: #5c43d2;
}

.package-third .package-header {
    overflow: hidden;
    background: #151031;
}

.options-container .package-content {
    border-radius: 25px 25px 20px 20px;
}

.package-secondary .title,
.package-secondary .subtitle,
.package-third .title,
.package-third .subtitle{
    color: #FFF;
}


.options-container .package-content .package-description {
    display: flex;
    padding: 0 40px 40px;
}

.package-description .package-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #666;
    font-size: 16px;
    font-weight: 300;
}

.package-description .left-content {
    width: calc(100% - 400px);
    border-right: 2px solid #f4f4f4;
}

.package-description .right-content {
    align-items: center;
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 400px;
    font-size: 18px;
}

.package-description .right-content  .price {
    font-size: 48px;
    font-weight: 700;
}

.package-description .package-list-item {
    display: flex;
    align-items: center;
}

.package-description .package-list-item::before {
    content: "";
    display: inline-block;
    min-width: 16px;
    height: 16px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACGklEQVR4Aa1Wv0scQRR+780mkBjCCRYJ5IcJaVJEc6QMkiUJpoykCkSI11jYeDY2FnfbCsLVNlp4YKmt+OPEP+AUez3BRhC8QkRk58b31r3j9GbPvXM/2N1h3uz3zb6Z+d4itMGIW049I2cS0LgI0G/4kn5uV7m9a4xZ1bXaynIpXYniQFvnX7fc7yi1wE0XYoDFFrXWnk2I7naM/tiffKRUOS55OMsxnlD53/e9rCXWRP5zPwfG5OEhMJhf2vzktQjIzDlagATAazNV3BwsNAQk55IWzmUKkkHV1zotaxKsgVIqlyC5IBVuEsBwxxxCl/j1pw921s7g4ly3xByte0kRjUCXGJ9+DaMTLyHrvbXGfaIsIdJv6AJCPjR8k9XTkyv7IMRvxEv+2RZ72kPw5evze8klPfOzx3Z+PvkO362LOzP3Ht58eNJCEJdcINZCUcGjg8vgOTTcy6SvOiavw+HPqNRNrBn1l0VAro8DPdD34nFH5IwqGcBKVFRIhEzQBblglwBr2+1GNIt0SC6WsYpj7Pm+Umf3DZY01YXigu3iXeBFbHRbrOdCgpAaUdwYyNCNkp/hniokBeaSAiTNQEBcz4DxICEYMo3q1jgHgX9jAiLGeMX1wUZdaanJUvYQMBd1wqOJ+UeAbpNbBQRi4UpRnoX+QzyUeMdkbEUf270VCLGdB44rphh+VXj6K5zS7XO/VlgppSM3yDVtY+aXR1lGyQAAAABJRU5ErkJggg==');
    background-size: cover;
    margin-right: 10px;
}

.package-third .price {
    font-size: 24px !important;
}

[id^="section-"] {
    scroll-margin-top: 100px;
}

.letter-content {
    scroll-margin-top: 250px;
}

.only-desktop {
    display: block;
}

.only-mobile {
    display: none;
}


section.knowledge-base,
section.privacy_policy {
    background: #FFF;
    color: #090909;
}

.alphabet-container {
    max-width: 1320px;
    margin: auto;
}

.privacy_policy .privacy-policy-container,
.knowledge-base .knowledge-base-container {
    max-width: 1360px;
    padding: 50px 20px;
    font-size: 16px;
}

.privacy_policy .description-privacy-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 30px 0;
}

.privacy_policy .description-privacy-police ul{
    padding-left: 20px;
}

.privacy_policy .description-privacy-police {
    line-height: 1.6;
}

.pl-20px {
    padding-left: 20px;
}

.ml-50px {
    margin-left: 50px;
}

.mt-30px {
    margin-top: 30px;
}

.mb-30px {
    margin-bottom: 30px;
}

ul ul {
    list-style-type: disc;
}

ul ul ul {
    list-style-type: disc;
}
.text-underline {
    text-decoration: underline;
}

.alphabet-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 36px;
    font-weight: 500;
}

.alphabet-container a {
    color: #FFF;
    text-decoration: none;
}

.alphabet-container a:first-child {
    color: #5c43d2;
}

.alphabet-container a:hover {
    color: #5c43d2;
}

h2.letter {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
}

.container.letter-content {
    margin-bottom: 100px;
}

.knowledge-base-item {
    margin-bottom: 25px;
}

.knowledge-base-item .item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/*.knowledge-base-item .item-description {*/
/*    font-size: 16px;*/
/*}*/

@media (max-width: 768px) {
    .footer-content .footer-column-2,
    .footer-content .footer-column-3 {
        width: 100%;
    }
    .items-grid{
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }

    .items-grid .item {
        border-right: none;
        border-bottom: 1px solid #FFF;
        padding-bottom: 20px;
        padding-right: 0;
    }

    .items-grid .item:first-child {
        border-top: 1px solid #FFF;
        padding-top: 20px;
    }

    .contact-form-content {
        flex-direction: column;
        margin-top: 40px;
    }

    .contact-form-content .content-right {
        margin-left: 0;
        margin-top: -40px;
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .contact-form-content .contact-form-header {
        margin-top: 40px;
        font-size: 28px;
        margin-right: 0;
        text-align: center
    }

    .header-section {
        font-size: 28px;
        height: 60px;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    .hamburger:hover {
        cursor: pointer;
    }

    .header-center nav .menu {
        display: none;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .header-center nav .menu.open {
        display: flex;
    }

    .header-left {
        display: flex;
        gap: 30px;
        width: 100%;
    }

    .header-left .header-logo {
        margin: auto;
        max-width: 200px;
    }

    .only-desktop {
        display: none;
    }

    .only-mobile {
        display: block;
    }

    .privacy_policy .privacy-policy-container {
        font-size: 14px;
    }

}

/* Duże ekrany (powyżej 1200px) */
@media (max-width: 1200px) {

    header {
        padding: 10px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
    }

    nav .menu {
        justify-content: center;
        padding: 0;
        margin: 20px 0;
    }

    .btn-primary {
        padding: 8px 25px;
        font-size: 14px;
    }

    section.information h2 {
        font-size: 28px;
        font-weight: 700;
    }

    section.information .subtitle {
        font-size: 20px;
        font-weight: 500;
    }

    section.about-us {
        padding: 30px 0;
    }

    section.about-us .about-us-content {
        flex-direction: column;
        align-items: center;
    }

    .about-us-content  .left-content {
        width: 100%;
    }

    .about-us-content .right-content {
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
    }

    .about-us-content .right-content .title {
        font-size: 28px;
    }

    .footer-content .footer-container {
        flex-wrap: wrap;
    }

    .footer-content .footer-column-1,
    .footer-content .footer-column-2,
    .footer-content .footer-column-3 {
        width: 100%;

    }

    .footer-content .footer-column-1 {
        text-align: center;
    }

    .footer-content .footer-header {
        margin-top: 30px;
    }

    .footer-content .social-media {
        justify-content: center;
    }
    .contact-form-content .content-right .content-form {
        padding: 20px;
    }

    .package-header .subtitle {
        font-size: 28px;
    }

    .options-container .package-content .package-description {
        padding: 20px;
    }

    .package-description .right-content,
    .package-description .left-content {
        width: 100%;
    }

    .package-description .left-content {
        border-right: none;
        border-bottom: 2px solid #f4f4f4;
        padding-bottom: 30px;
    }

    .options-container .package-content .package-description  {
        flex-direction: column;
    }

    .package-description .right-content .price {
        font-size: 32px;
    }

    .package-description .right-content {
        gap: 20px;
    }

    .letter-content {
        scroll-margin-top: 160px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {

    .footer-content .footer-column-1 {
        flex-direction: row;
        align-items: center;
    }

    .footer-content .footer-column-2,
    .footer-content .footer-column-3 {
        width: calc((100% / 2) - 40px);
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .items-grid .item:nth-child(2n) {
        border-right: none;
    }


    .contact-form-content .contact-form-header {
        font-size: 32px;
        margin-right: 150px;
        text-align: center
    }

    .header-section {
        font-size: 32px;
        text-align: center
    }

    .content-form form input,
    .content-form form textarea {
        margin-bottom: 20px;
    }
    /*.contact-form-content .content-left {*/
    /*    width: 40%;*/
    /*}*/

    /*.contact-form-content .content-right {*/
    /*    margin-left: -50px;*/
    /*    width: calc(60% + 10px);*/
    /*    background: #111;*/
    /*    height: fit-content;*/
    /*    border-radius: 10px;*/
    /*}*/
}

@media (min-width: 1201px) {
    .items-grid .item:nth-child(3n) {
        border-right: none;
    }
}