html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Lighter grey for a cleaner look */
    color: #34495e; /* Darker, softer text color */
    scroll-padding-top: 96px;
}
.theme-primary {
    color: #2c3e50; /* Deep blue */
}
.theme-accent {
    color: #d4af37; /* Gold accent */
}
.theme-gradient-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%); /* Deep blue gradient */
}
.theme-gradient-text {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-button {
    transition: all 0.3s ease-in-out;
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
}
.feature-card {
    transition: all 0.3s ease-in-out;
}
.feature-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}