
:root {
    --green-dark: #1E4D42;
    --green-accent: #9bd22d;
    --text-green: #14463A;
    --text-dark: #111111;
    --text-light: #6c756f;
    --bg-light: #FCFAF3;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Manrope, Arial, Helvetica, sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight:500;
    text-align: center;
}

.header {
    background: var(--green-dark);
    text-align: center;
    padding: 60px 20px;
}

.header img {
    max-width: 220px;
    height: auto;
}

.card {
    background: var(--bg-light);
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 30px;
}

h1 {
    font-size: 28px;
    color:var(--text-green);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.company {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight:700;
    justify-content: center;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.contact-item a {
    text-decoration: none;
    color: var(--text-green);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item.phone img {
    margin-right: 11px;
}

.contact-item.insta img {
    width:28px;
    height: 28px;
    margin-left:-3px;
    margin-right:7px;
}

.button-wrapper {
    padding:0 30px;
    /*text-align: right;*/
    margin-top: -28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-accent);
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
}

/*.btn:hover {*/
/*    opacity: 0.85;*/
/*}*/

.btn img {
    width: 28px;
    height: 28px;
}

@media (max-width: 600px) {
    .card {
        padding: 40px 30px;
    }
}



/* manrope-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/manrope-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/manrope-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/manrope-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/manrope-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/manrope-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}