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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F9FAFB;
    color: #0F172A;
}

.content-block {
    padding-top: clamp(20px, 3vw, 30px);
    padding-bottom: clamp(20px, 3vw, 30px);
}

#section-1, #section-2 {
    display: flex;
    justify-content: flex-start;

    padding-left: clamp(16px, 5vw, 56px);
    flex-wrap: wrap;

}

#section-2 {
    background-color: #F3F4F6;
}

.text-content {
    width: 50%;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(6px, 1.2vw, 10px);
}

.title-text-content {
    font-size: clamp(24px, 4.2vw, 76px);
    font-weight: 700;
    line-height: 1.1;
}

.subtitle-text-content {
    font-size: clamp(14px, 2.5vw, 48px);
    font-weight: 400;
    line-height: 1.25;
}

.button-block {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: wrap;
}

.section-btn {
    border: none;
    border-radius: clamp(20px, 2.5vw, 40px);
    background-color: #FFDC5F;

    cursor: pointer;

    font-size: clamp(14px, 2.5vw, 48px);
    font-weight: 700;

    height: clamp(44px, 6.5vw, 120px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-btn:hover {
    filter: brightness(0.9);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


.price-btn {
    width: clamp(150px, 22vw, 429px);
}

.finally-price-btn {
    width: clamp(200px, 28vw, 543px);
}

.img-content {
    width: 50%;
    height: auto;

    display: flex;
    justify-content: flex-end;
}

.img-content img {
    width: 95%;
    height: auto;

    max-width: 100%;
    object-fit: contain;
}

.finally-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    text-align: center;
}

footer {
    width: 100%;
    min-height: clamp(60px, 8vw, 100px);

    background-color: #FFDC5F;
}
