body {
    font-family: 'Inter', sans-serif;
    background-color: #000000; /* Main background set to black */
    color: #e0e0e0; /* Default text color for dark background */
}
.button-primary {
    /* Ensures button maintains a strong presence */
    transition: all 0.3s ease; 
}
.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(234, 88, 12, 0.4); /* Stronger orange shadow on hover */
}
/* Custom class for section separation */
.section-separator {
    border-bottom: 2px solid rgba(234, 88, 12, 0.3); /* Light orange divider */
}
/* Style for the list items for a more modern look */
.styled-list li {
    position: relative;
    padding-left: 1.75rem; /* Space for the custom bullet */
}
.styled-list li::before {
    content: '✓'; /* Custom checkmark bullet */
    color: #f97316; /* Tailwind orange-500 */
    font-weight: 700;
    position: absolute;
    left: 0;
}