:root {
    --color-primary-green: #16a249;
    --color-primary-green-light: #1cce5e;
    --color-secondary-brown: #9e8c57;
    --color-text-dark: #0c0a09;
    --color-text-muted: #78716c;
    --color-text-light: #fafaf9;
    --color-text-light-alt: #fff1f2;
    --color-background-light: #fafaf9;
    --color-background-offwhite: #f2f2ed;
    --color-white: #ffffff;
    --color-border: #e9e9e2;
    --color-accent-yellow: #fbbd23;
    
    /* Additional variables used in about.html */
    --color-primary: #16a249;
    --color-primary-darker: #0d7a3a;
    --color-secondary: #9e8c57;
    --color-secondary-light: #b5a06a;
    --color-background-section-light: #f8f8f6;
    --color-text-light-muted: rgba(250, 250, 249, 0.8);
    --font-special: 'Italianno', cursive;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, p, ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #22c55e;
    border-radius: 9999px;
    box-shadow: 0px 25px 50px 0px rgba(22, 162, 73, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Gradient text utility class */
.gradient-text {
    color: var(--color-primary); /* Fallback color */
    background: linear-gradient(168deg, var(--color-primary) 0%, var(--color-primary-darker) 285.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Ensure text is visible even if gradient doesn't work */
    display: inline-block;
}