body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* HERO */
.cs-hero {
    margin-top: 60px;
    margin-bottom: 90px;
    text-align: center;
    padding: 60px 20px 60px;
}
.cs-hero h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 30px;
}
.cs-hero p {
    font-size: 1.5rem;
}

/* CARDS */
.cs-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
}
.cs-cards .card {
    background-color: #F6F6F6;
    box-shadow: 5px 5px #D7D7D7;
    width: 320px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.2s;
}
.cs-cards .card:hover {
    transform: translateY(-20px);
}
.cs-cards img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.cs-cards h3 {
    font-size: 2rem;
    margin: 20px 0 15px;
}
.cs-cards p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}
.cs-cards button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background-color: #2b7bd7;
    color: white;
    font-size: 1.2rem;
}

/* DETAIL BLOCKS */
/* GULICKY */
.cs-detail .ball {
    background-color: #89bffe;
    border-radius: 999px;
    height: 100px;
    width: 100px;
    position: absolute;
    z-index: -999;
}
.cs-detail .ball {
    top: -35px;
    left: -35px;
}
@media screen and (max-width: 480px) {
.cs-detail .ball {
    top: -12px;
    left: -12px;
}   
}
.cs-detail .ball1 {
    background-color: #acffc3;
}
.cs-detail .ball2 {
    background-color: #f7ff9e;
}
.cs-detail .ball4 {
    background-color: #4b4b4b;
    /* mateon troll
    left: 50px;
    top: 15px;
    z-index: 20; */
}

.cs-detail {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding: 80px 20px;
}
.cs-detail .block {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 80px;
    border-bottom: 2px solid #E5E5E5;
}

/* HEADER WITH LOGO + NAME */
.cs-header {
    display: flex;
    align-items: center;
    gap: 30px;
}
.cs-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}
.cs-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.cs-header p {
    font-size: 1.3rem;
    line-height: 28px;
}

/* TEXT CONTENT */
.cs-detail h3 {
    font-size: 1.8rem;
    margin: 25px 0 10px;
}
.cs-detail ul {
    font-size: 1.3rem;
    margin-left: 20px;
    line-height: 32px;
}

/* CTA */
.cs-cta {
    background-color: #1122BE;
    text-align: center;
    padding: 120px 20px;
    color: white;
}
.cs-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.cs-cta p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}
.cs-cta button {
    width: 300px;
    padding: 20px;
    font-size: 1.4rem;
    border: none;
    border-radius: 60px;
    background-color: #2b7bd7;
    color: white;
}

/* MOBILE */
@media (max-width: 900px) {
    .cs-header {
        flex-direction: column;
        text-align: center;
    }
    .cs-logo {
        width: 90vw;
        height: 90vw;
    }
}
/* SECTION CALLENDLY */
section.callendly {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
section.callendly h2 {
    font-size: 4rem;
    text-align: center;
}
section.callendly .container {
    display: flex;
    justify-content: center;
    min-width: 100%;
    align-items: center;
}
section.callendly .container .left {
    display: flex;
    flex-direction: column;
    width: 30%;
}
section.callendly .container .ball1 {
    background-color: #2B7BD7;
    text-indent: -99999px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}
section.callendly .container .ball2 {
    background-color: #6cb1ff;
    text-indent: -99999px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    align-self: flex-end;
}
section.callendly .container .left h3 {
    font-size: 3rem;
    width: 600px;
}
section.callendly .container .left p {
    color: gray;
    font-size: 1.2rem;
    line-height: 1.5;
    width: 600px;
}
section.callendly .container .right {
    min-width: 40%;
}
@media screen and (max-width: 1905px) {
    section.callendly .container {
        justify-content: center;
        gap: 200px;
        align-items: center;
    }
}
@media screen and (max-width: 1296px) {
    section.callendly .container {
        gap: 250px;
    }
}
@media screen and (max-width: 1120px) {
    section.callendly .container {
        gap: 50px;
        flex-direction: column;
        align-items: center;
    }
    section.callendly .container .left {
        align-items: center;
    }
    section.callendly .container .ball1 {
        align-self: flex-start;
    }
    .calendly-inline-widget {
        width: 100vw;
    }
    section.callendly .container .left h3 {
        margin-bottom: 20px;
        text-align: center;
    }
}
@media screen and (max-width: 637px) {
    section.callendly .container .left h3 {
        width: 90vw;
    }
    section.callendly .container .left p {
        width: 90vw;
    }
}
@media screen and (max-width: 539px) {
    section.callendly h2 {
        font-size: 3.5rem;
        margin: 0 20px;
    }
}

/* FOOTER - finally... */
footer {
    background-color: black;
    display: flex;
    justify-content: center;
    padding: 90px 0;
    gap: 300px;
    font-size: 1.3rem;
}
footer .left {
    display: flex;
    flex-direction: column;
}
footer .left img {
    height: 100px;
    width: 424px;
    margin-bottom: 20px;
}
footer .left p {
    color: gray;
    width: 700px;
}
footer .right {
    display: flex;
    flex-direction: column;
    color: gray;
}
footer .right h3 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}
footer .right img {
    margin-top: 50px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
@media screen and (max-width: 1275px) {
    footer {
        gap: 0;
        justify-content: space-between;
    }
    footer .left {
        margin-left: 50px;
    }
    footer .right {
        margin-right: 50px;
    }
}
@media screen and (max-width: 1037px) {
    footer {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }
    footer .left,
    footer .right {
        margin-left: 50px;
    }
    footer .left p {
        width: auto;
        margin-right: 20px;
    }
}
@media screen and (max-width: 513px) {
    footer .left img {
        width: 70vw;
        height: auto;
    }
}

.cs-detail {
    background-color: #fbfdff;
    padding: 80px;
    border-radius: 15px;
}
.cs-detail {
    margin: 0 auto 50px auto;
}
.cs-detail h3 {
    border-left: 4px solid #2b7bd7;
    padding-left: 12px;
}
.cs-logo {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.desc {
    max-width: 1300px;
    font-size: 1.25rem;
}

@media screen and (max-width: 550px) {
.cs-logo {
    width: 85vw;
    height: 85vw;
    scale: 0.8;
}
}