/* CSS Variables */
:root {
    --orange: #FC712B;
    --turquoise: #0AA0B9;
    --purple: rgb(170, 59, 133);
    --pink: rgb(232, 0, 111);
    --light-orange: rgb(255, 182, 73);
    --blue: rgb(8, 126, 170);
    --text-dark: #1A1A1A;
    --gray-light: #F8FAFB;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Feature Card Animation */
.feature-card {
    transition: all 0.25s ease-in-out;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

/* Icon Box Styling */
.icon-box svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.2;
}

/* Button Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}
