:root {
    --primary: #E84933;
    --primary-light: #f07a6a;
    --secondary: #F6A537;
    --neutral-dark: #3C4C65;
    --neutral-light: #82ADB9;
    --bg-light: #fdfdfd;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1100px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 60px;
    /* Space for fixed footer */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gentium Plus', serif;
    color: var(--neutral-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d13d2a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: .9rem;
    gap: 1.5rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links .btn:hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-dark);
}

/* Footer */
footer {
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 1rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    z-index: 1;

}

.footer-bottom p {
    margin-bottom: 0;
}

.crp-badge {
    color: var(--secondary);
    font-weight: bold;
}

/* Sections specific */
.faq-item {
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    padding-left: 10px !important;
}

.step {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer Alert Box */
.footer-alert-box {
    background-color: rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(24, 2, 88, 0.126);
    border-radius: 8px;
    padding: 1.6rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    text-align: center;
    color: white;
    font-size: .95rem;
}

.footer-alert-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-alert-item {
    margin-bottom: 0.8rem;
}

.footer-alert-item:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1170px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

}