body {
    background-color: #E8EDF1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#main-container {
    max-width: 1032px;
    margin: 0 auto;
}

#zuzu-header {
    padding: 32px;
    /* background-color: red; */
}

.icon-and-zuzu-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.zuzu-icon {
    width: 44px;
}

.zuzu-text {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 48px;
    color: #807EF2;
}

#hero-section {
    /* background-color: blue; */
    width: 100%;
}

.hero-section-container {
    display: flex;
    width: 100%;
    padding: 100px 0;
}

.hero-text-side {
    flex: 1;
}

.hero-text {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 64px;
    color: #1B2939;
    line-height: 68px;
    letter-spacing: -2%;
    max-width: 80%;
    margin-bottom: 32px;
}

.sub-text-1, .sub-text-2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #1B2939;
    line-height: 30px;
}

.sub-text-1 {
    margin-bottom: 24px;
}

.sub-text-2 {
    margin-bottom: 32px;
}

.cta-button {
    border-radius: 16px;
    background: linear-gradient(80deg, #E8652D -4.25%, #E82DD2 28.23%, #A650FF 69.35%, #009DFF 116.49%);
    padding: 24px;
    width: 263px;
    text-align: center;
    text-decoration: none;
    border: none;
}

.cta-button-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-zuzu-img {
    transform: scale(3.2) translate(25px, 12px);
    transform-origin: center;
}

.zuzu-icon-hero {
    position: absolute;
    bottom: -10px;
    right: 80px;
    opacity: 0.4;
}

#cards-section {
    width: 100%;
}

.card-section-container {
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.card-section-header {
    display: flex;
    justify-content: center;
    align-items: start;
    text-align: center;
    margin-bottom: 64px;
    gap: 16px;
}

.zuzu-icon-cards {
    opacity: 0.4;
}

.cards-section-header-text {
    font-family: "Podkova", serif;
    font-weight: 700;
    color: #1B2939;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -2%;
    margin: 0;
}

.card-section-body-container {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 312px;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 32px rgba(70, 60, 50, 0.25);
}

.card-image-side {
    flex: 1;
}

.card-image {
    width: 100%;
}

.card-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 24px;
    gap: 16px;
}

.card-text-side-bold {
    font-family: "Podkova", serif;
    font-weight: 700;
    color: #1B2939;
    font-size: 22px;
    line-height: 26px;
}

.card-text-side-regular {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #1B2939;
    line-height: 28px;
}

#footer-section {
    width: 100%;
}

.footer-container {
    padding: 32px;
    text-align: center;
}

.footer-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #1B2939;
}