:root {
    --primary: #F2A900;
    --secondary: #FFC451;
    --light: #FFF9E6;
    --dark: #1D1D27;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
}

/* Topbar Styles */
.topbar {
    background: white;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}

.topbar-contact {
    display: flex;
    gap: 1.5rem;
}

.topbar-contact a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.topbar-contact a:hover {
    color: var(--primary);
}

.topbar-contact i {
    color: var(--primary);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand img {
    height: 45px;
}

.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.login {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.login:hover {
    color: var(--primary);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

/* Guide Content Styles */
.guide-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.guide-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.guide-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.guide-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

.guide-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.guide-step:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.guide-step h2 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-step h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.guide-step ul {
    list-style: none;
}

.guide-step li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.guide-step li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--primary);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .topbar {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        border-top: 1px solid #ddd;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        padding: 0.5rem 0;
        display: block;
        text-align: center;
    }

    .navbar-menu a::after {
        display: none;
    }

    .btn-primary {
        text-align: center;
    }

    .guide-title {
        font-size: 2rem;
    }
}