/* Header Styles */
.header_home {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav_home {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_home {
    display: flex;
    align-items: center;
}

.logo_home img {
    height: 40px;
    margin-right: 10px;
}

.logo_text_home {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav_links_home {
    display: flex;
    gap: 30px;
    padding-right: 10rem;
}

.nav_link_home {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav_link_home:hover {
    color: var(--primary-color);
}

.cta_button_home {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta_button_home:hover {
    background-color: var(--accent-color);
}