@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap";

/* Core variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --highlight: #aa9767;
    --dark-teal: #142524;
    --teal: #203b39;
    --burgundy: #6d1a36;
    --light-burgundy: #aa345c;
    --cream: #ede8db;
    --base-font-size-small: 15.5px;
    --base-font-size-normal: 16px;
    --base-font-size-large: 17px;
    --base-ratio-small: 1.18;
    --base-ratio-normal: 1.25;
    --base-ratio-large: 1.3;
}

/* Layout utility classes */
.max700 {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.max800 {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.max900 {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    position: relative;
    border-radius: 0;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* Basic HTML elements */
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

ul,
dl {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Fonts */
@font-face {
    font-family: "Frauen Roman";
    src: url("https://db.onlinewebfonts.com/t/b6a129660566ca44b1a523b59c7a26a3.eot");
    src: url("https://db.onlinewebfonts.com/t/b6a129660566ca44b1a523b59c7a26a3.eot?#iefix") format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/b6a129660566ca44b1a523b59c7a26a3.woff") format("woff"),
        url("https://db.onlinewebfonts.com/t/b6a129660566ca44b1a523b59c7a26a3.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/b6a129660566ca44b1a523b59c7a26a3.ttf") format("truetype"),
        url("https://db.onlinewebfonts.com/t/b6a129660566ca44b1a523b59c7a26a3.svg#Frauen Roman") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
body {
    background-color: var(--dark-teal);
    color: var(--cream);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-rendering: geometricPrecision;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: .2px;
}

/* Typography */
h1,
.h1--header {
    font-family: "Frauen Roman", serif;
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-size: calc(var(--base-font-size-normal) * pow(var(--base-ratio-normal), 5));
    margin-bottom: 1.4rem;
    color: var(--highlight);
}

h2,
.h2--header {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -0.1px;
    font-size: calc(var(--base-font-size-normal) * pow(var(--base-ratio-normal), 3.5));
    margin-bottom: 1.4rem;
    color: var(--highlight);
}

h3,
.h3--header {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -0.2px;
    font-size: calc(var(--base-font-size-normal) * pow(var(--base-ratio-normal), 2.5));
    margin-bottom: 1.4rem;
}

h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--cream);
}

/* Form elements */
input,
label,
select,
button,
textarea {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    line-height: 1;
    color: var(--teal);
    font-family: "DM Sans", sans-serif;
}

input:focus {
    outline: 0;
}

input,
textarea {
    box-sizing: content-box;
}

button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
    box-sizing: border-box;
}

input[type=text],
input[type=email] {
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    padding: .56rem 1.4rem;
    margin-bottom: .7rem;
    border-radius: 20px;
}

input[type=text]::placeholder,
input[type=email]::placeholder {
    color: var(--burgundy);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    border-radius: 10px;
    padding: 10px 15px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight);
    color: var(--cream);
    box-shadow: 0 0 0 0.25rem rgba(170, 151, 103, 0.25);
}

.form-control::placeholder {
    color: rgba(237, 232, 219, 0.6);
}

.input-group-text {
    background-color: var(--highlight);
    color: var(--black);
    border: 1px solid var(--highlight);
    border-radius: 10px 0 0 10px;
}

/* Button styles */
.btn {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    transition: all .25s cubic-bezier(0.6, 0.05, 0.2, 1);
    padding: .7rem 1.68rem;
    color: var(--highlight);
    border-top: 1px solid var(--highlight);
    border-right: 4px solid var(--highlight);
    border-bottom: 1px solid var(--highlight);
    border-left: 4px solid var(--highlight);
    font-weight: 500;
}

.btn:hover {
    background-color: var(--highlight);
    color: var(--black);
}

.btn.large,
.btn-donate {
    border-radius: 30px;
    color: var(--cream);
    padding: .7rem 1.4rem;
    background-color: var(--burgundy);
    border-color: var(--burgundy);
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    justify-content: center;
}

.btn.large:hover,
.btn-donate:hover {
    background-color: var(--light-burgundy);
    border-color: var(--light-burgundy);
}

.amount-btn {
    width: 90px;
    margin: 5px;
    background-color: transparent;
    color: var(--cream);
    border: 2px solid var(--highlight);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
    font-size: 16px
}

.amount-btn:hover,
.amount-btn.active {
    background-color: var(--highlight);
    color: var(--black);
    border-color: var(--highlight);
}

.btn-sm {
    border-radius: 20px;
    font-weight: 500;
    padding: 5px 15px;
}

.btn-warning {
    background-color: var(--highlight);
    border-color: var(--highlight);
    color: var(--black);
}

.btn-info {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--cream);
}

/* Card & Containers */
.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--teal);
}

.card-header {
    background-color: var(--burgundy);
    color: var(--cream);
    font-weight: 500;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: 20px;
    color: var(--cream);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.donation-container {
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    padding: 40px;
    position: relative;
}

.sandbox-indicator {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--highlight);
    color: var(--black);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 15px 0 15px;
}

/* Alert styles */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-danger {
    background-color: rgba(109, 26, 54, 0.2);
    border-color: rgba(109, 26, 54, 0.3);
    color: var(--cream);
}

.alert-info {
    background-color: rgba(32, 59, 57, 0.5);
    border-color: rgba(32, 59, 57, 0.6);
    color: var(--cream);
}

.alert-warning {
    background-color: rgba(170, 151, 103, 0.2);
    border-color: rgba(170, 151, 103, 0.3);
    color: var(--cream);
}

/* Donation section specific */
.donation-section {
    background-color: #1a1a1a;
    padding: 3rem 2rem;
}

.donation-options {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.custom-amount {
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
    margin: 15px auto;
}

#customAmount {
    width: 100%;
    max-width: 300px;
}

#paymentOptions {
    margin-top: 2rem;
}

#qrCode,
.qr-code {
    max-width: 250px;
    margin: 0 auto 1.5rem;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
}

.qr-code-container {
    text-align: center;
    margin: 20px 0;
}

.placeholder-message {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.about-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

/* Utility Classes */
.is--centered,
.center--align,
.text-center {
    text-align: center;
}

.is--centered {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.d-grid {
    display: grid;
}

.gap-2 {
    gap: 0.5rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media only screen and (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media only screen and (max-width: 1440px) {

    h1,
    .h1--header {
        margin-bottom: 1.05rem;
    }

    h2,
    .h2--header {
        margin-bottom: 1.05rem;
    }

    h3,
    .h3--header {
        margin-bottom: 1.05rem;
    }

    .btn {
        padding: .525rem 1.26rem;
    }

    .btn.large {
        padding: .525rem 1.05rem;
    }
}

@media only screen and (max-width: 1024px) {

    h1,
    .h1--header {
        margin-bottom: .7rem;
        font-size: calc(var(--base-font-size-small) * pow(var(--base-ratio-small), 5));
    }

    h2,
    .h2--header {
        margin-bottom: .7rem;
        font-size: calc(var(--base-font-size-small) * pow(var(--base-ratio-small), 3));
    }

    h3,
    .h3--header {
        margin-bottom: .7rem;
        font-size: calc(var(--base-font-size-small) * pow(var(--base-ratio-small), 2));
    }

    .btn {
        padding: .35rem .84rem;
    }

    .btn.large {
        padding: .35rem .7rem;
    }

    .mobile--only {
        display: block;
    }

    .mobile--hide {
        display: none !important;
    }

    .donation-container {
        padding: 20px;
        margin: 20px auto;
    }
}

/* Layout classes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Header */
.header--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.header--left {
    display: flex;
    align-items: center;
}

.header--logo {
    display: inline-block;
}



/* Custom MailChimp Form Styling */
#mc_embed_signup {
    background: transparent !important;
    clear: left;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif !important;
    color: var(--cream) !important;
}

#mc_embed_signup h2 {
    font-family: 'Frauen Roman', serif !important;
    color: var(--highlight) !important;
    font-weight: normal !important;
    text-align: center;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 15px;
}

#mc_embed_signup .mc-field-group {
    width: 92%;
    margin-bottom: 15px;
}

#mc_embed_signup .mc-field-group label {
    color: var(--cream) !important;
    font-weight: 400 !important;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--cream) !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    font-family: 'DM Sans', sans-serif !important;
    width: 95%;
}

#mc_embed_signup input:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--highlight) !important;
    box-shadow: 0 0 0 0.25rem rgba(170, 151, 103, 0.25) !important;
}

#mc_embed_signup input::placeholder {
    color: rgba(237, 232, 219, 0.6) !important;
}

#mc_embed_signup .button {
    background-color: var(--burgundy) !important;
    border-color: var(--burgundy) !important;
    color: var(--cream) !important;
    font-weight: 500 !important;
    padding: 0.5em 2em !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    font-size: 1.1rem !important;
    margin: 0 auto !important;
    display: block !important;
}

#mc_embed_signup .button:hover {
    background-color: var(--light-burgundy) !important;
    border-color: var(--light-burgundy) !important;
}

#mc_embed_signup div.response {
    color: var(--cream) !important;
    font-weight: 400 !important;
    margin-bottom: 1em !important;
}

#mc_embed_signup #mce-success-response {
    background-color: rgba(32, 59, 57, 0.3) !important;
    border: 1px solid var(--highlight) !important;
    padding: 15px !important;
    border-radius: 10px !important;
}

#mc_embed_signup #mce-error-response {
    background-color: rgba(109, 26, 54, 0.3) !important;
    border: 1px solid rgba(109, 26, 54, 0.5) !important;
    padding: 15px !important;
    border-radius: 10px !important;
}

/* Fix for asterisk */
#mc_embed_signup .asterisk {
    color: var(--light-burgundy) !important;
}

/* Better spacing for the form elements */
#mc_embed_signup .mc-field-group label {
    margin-bottom: 5px !important;
    display: block !important;
}

#mc_embed_signup div#mce-responses {
    overflow: visible !important;
}

p {
    margin-bottom: 0 !important;
}


/* tips */
/* Tips section */
.tips {
    padding: 80px 20px;

}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;


    border-top: 3px solid var(--highlight);
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: rgb(170, 52, 92);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.tip-title {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.tip-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.tip-how {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

/* FAQ section */
.faq {
    padding: 60px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
    padding: 10px 0;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    color: var(--light-text);
    margin: 0 10px;
    font-size: 1.2rem;
}

.href {
    color: rgb(237, 232, 219);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-left,
    .form-right {
        padding: 0;
        margin-bottom: 30px;
    }

    .form-container {
        flex-direction: column;
    }
}

/* Background Video Styles */
.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Add overlay to ensure content readability */
.site--container {
    position: relative;
    z-index: 1;
}

.site--container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    /* Dark overlay for better readability */
    z-index: -1;
}

/* Video Lightbox Styles */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 4px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: -10px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

/* WhatsApp Share Button */
.whatsapp-share {
    text-align: center;
    margin: 15px 0;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

/* Sticky Mobile Button */
#sticky-form-button-container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

#sticky-form-button {
    display: block;
    width: 100%;
    background-color: var(--burgundy);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

#sticky-form-button:hover, 
#sticky-form-button:active {
    background-color: var(--light-burgundy);
    text-decoration: none;
    color: white;
}

/* Show button only on mobile */
@media (max-width: 768px) {
    #sticky-form-button-container {
        display: block;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
    }

    .close-lightbox {
        top: -50px;
        right: 0;
        font-size: 36px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .whatsapp-btn {
        display: block;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 16px;
    }
}