:root {
    --primary-light: #E6DED3;
    --cream-white: #FDF9F1;
    --gray: #6B7280;
    --black: #000000;
    --dark-blue: #0F172A;
    --accent-blue: #7291D7;
}
@font-face {
font-family: 'Satoshi';
src: url('Satoshi_Complete/Fonts/OTF/Satoshi-Regular.otf') format('opentype');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'Satoshi';
src: url('Satoshi_Complete/Fonts/OTF/Satoshi-Bold.otf') format('opentype');
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: 'Satoshi';
src: url('Satoshi_Complete/Fonts/OTF/Satoshi-Black.otf') format('opentype');
font-weight: 900;
font-style: normal;
}

@font-face {
font-family: 'Satoshi';
src: url('Satoshi_Complete/Fonts/OTF/Satoshi-Light.otf') format('opentype');
font-weight: 300;
font-style: normal;
}

@font-face {
font-family: 'Satoshi';
src: url('Satoshi_Complete/Fonts/OTF/Satoshi-Medium.otf') format('opentype');
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: 'Satoshi';
src: url('Satoshi_Complete/Fonts/OTF/Satoshi-Italic.otf') format('opentype');
font-weight: 400;
font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Satoshi', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #20ba5a;
}
.whatsapp-float i{
    font-size: 36px;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}