* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #06d6a0 #f0f7ff;
}

html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html::-webkit-scrollbar-track {
    background: #f0f7ff;
    border-radius: 5px;
    margin: 2px;
}

html::-webkit-scrollbar-thumb {
    background: #06d6a0;
    border-radius: 5px;
    border: 2px solid #f0f7ff;
    transition: background 0.2s ease;
}

html::-webkit-scrollbar-thumb:hover {
    background: #118ab2;
}

html::-webkit-scrollbar-button {
    display: none;
}

body {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #073b4c;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    padding: 14px 32px;
    background: #06b38a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}

.cta-button:hover {
    background: #05b38a;
    transform: translateY(-2px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25%  { transform: translateY(-20px) translateX(10px); }
    50%  { transform: translateY(10px) translateX(-15px); }
    75%  { transform: translateY(-15px) translateX(5px); }
}