*{
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #880d1e;
    border-radius: 4px;
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(136, 13, 30, 0.4); /* Light mode shadow */
}
.dark .cta-button:hover {
    box-shadow: 0 4px 15px rgba(232, 144, 5, 0.4); /* Dark mode shadow */
}