@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --pink: #e06575;
    --pink-hover: #f08a97;
    --text-dark: rgba(0, 0, 0, .78);
    --top-gray: #dedada;
}

body.wix-simple {
    background: #fff;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* TOP */
.wix-top {
    background: var(--top-gray);
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.wix-logo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 16px;
    display: flex;
    justify-content: flex-start;
}

.wix-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

/* WRAP */
.wix-simple-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 20px 100px;
    text-align: center;
}

.wix-simple-wrap h1 {
    margin: 0 0 32px;
    font-size: clamp(34px, 4.3vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

/* IMAGE */
.wix-brochure-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* ACTIONS */
.wix-actions {
    margin-top: 10px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTON */
.wix-simple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0 46px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
}

.wix-simple-btn:hover {
    background: var(--pink-hover);
}

.wix-simple-btn--ghost {
    background: transparent;
    color: var(--pink);
    border: 1px solid rgba(224, 101, 117, .6);
    box-shadow: none;
}

.wix-simple-btn--ghost:hover {
    background: rgba(224, 101, 117, .08);
}

@media (max-width:600px) {
    .wix-simple-wrap {
        padding: 40px 16px 70px;
    }

    .wix-simple-btn {
        min-height: 60px;
        font-size: 20px;
        padding: 0 32px;
    }
}