:root {
    --primary: #ff6200;
    --secondary: #1a2b49;
    --tertiary: #063679;
    --background: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(26, 43, 73, 0.08);
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--secondary);
    font-family: "Segoe UI", system-ui, sans-serif;
    line-height: 1.7;
}

section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    section {
        padding: 4rem 2rem;
    }
}

.bg-light {
    background: var(--background) !important;
}
.bg-white {
    background: var(--white) !important;
}

.text-primary {
    color: var(--primary) !important;
}
.text-dark {
    color: var(--secondary) !important;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 98, 0, 0.3);
}

h1,
h2,
h3,
h4 {
    color: var(--secondary);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card {
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.w-45 {
    width: 45% !important;
}
