body{
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: serif;
}

.header-container {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(215, 30, 40);
    height: 75px;
    width: 100vw;
    border-bottom-color: rgb(255, 205, 65);
    border-bottom-style: solid;
    border-bottom-width: 4px;
    font-size: 17px;
    font-weight: 400;
    line-height: 21.998px;
    position: relative;
}

.logo {
    color: white;
    padding-right: 6px;
    padding-left: 12px;
    width: 8em;
    font-size: 1.5em;
}

.signon-btn {
    font-family: sans-serif;
    font-weight: bold;
    background-color: white;
    color: black;
    border-radius: 18px;
    border-style: hidden;
    padding: 10px 16px;
    text-decoration: none;
    display: inline-block;
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: rgb(215, 30, 40);
    flex-direction: column;
    gap: 0;
    z-index: 100;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 16px 20px;
    font-weight: 500;
    transition: background-color 0.25s ease;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        gap: 0;
        top: auto;
        border-bottom: none;
        padding-right: 20px;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 8px 20px;
        color: white;
    }

    .hamburger-link {
        display: none !important;
    }
}

.hero-bonus {
    width: 100vw;
    height: 400px;
    margin: 0;
    padding: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 20px;
}

.hero-content h2 {
    font-size: 2.5em;
    margin: 0 0 16px 0;
    font-weight: 700;
    font-family: sans-serif;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3em;
    margin: 0 0 32px 0;
    font-weight: 400;
    font-family: sans-serif;
}

.hero-btn {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 14px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 30, 40, 0.3);
    color: white;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.article-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-content h3 {
    margin: 0;
    font-size: 1.2em;
    color: black;
    font-weight: 700;
    font-family: sans-serif;
    line-height: 1.3;
}

.article-content p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.article-btn {
    display: inline-block;
    align-self: flex-start;
    background-color: transparent;
    color: black;
    border: 2px solid black;
    padding: 8px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    font-family: sans-serif;
    transition: all 0.25s ease;
    margin-top: 8px;
}

.article-btn:hover {
    background-color: black;
    color: white;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-bonus {
        height: 240px;
    }

    .hero-content h2 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 1em;
    }
}

.hamburger-link {
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 48px;
    transition: all 0.25s ease;
    color: white;
}

.hamburger-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0.97);
}

.hamburger-link:active {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
}

.icon-bar {
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
    display: block;
    background-color: white;
    width: 32px;
    height: 2px;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.offer-card {
    background-color: white;
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.offer-card h2 {
    margin: 0;
    font-size: 1.3em;
    color: black;
    font-weight: 700;
    line-height: 1.4;
    font-family: sans-serif;
}

.offer-card p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.get-started-btn {
    align-self: flex-start;
    background-color: transparent;
    color: purple;
    border: none;
    border-radius: 4px;
    padding: 0;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: sans-serif;
}

.get-started-btn:hover {
    background-color: rgb(185, 20, 30);
    transform: scale(1.02);
}

.get-started-btn:active {
    transform: scale(0.98);
}

.section-wrapper {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.gold-overline {
    display: inline-block;
    color: #f8f9fa;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgb(255, 205, 65);
    font-family: sans-serif;
}

.section-header h2 {
    font-size: 2em;
    color: black;
    margin: 16px 0 0 0;
    font-weight: 700;
    font-family: sans-serif;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.community-section {
    padding: 60px 20px 40px 20px;
    background-color: #f8f9fa;
}

.community-section .section-header {
    max-width: 1400px;
    margin: 0 auto 40px auto;
}

.community-intro {
    font-size: 1.1em;
    color: #555;
    margin-top: 16px;
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.community-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.community-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.community-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.community-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.community-content h3 {
    margin: 0;
    font-size: 1.3em;
    color: black;
    font-weight: 700;
    font-family: sans-serif;
    line-height: 1.3;
}

.community-content p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.community-btn {
    display: inline-block;
    align-self: flex-start;
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    font-family: sans-serif;
    transition: all 0.25s ease;
    margin-top: 8px;
    cursor: pointer;
}

.community-btn:hover {
    background-color: black;
    transform: translateX(4px);
    color: white;
}

.footer {
    background-color: rgb(215, 30, 40);
    color: white;
    padding: 40px 20px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.social-media {
    text-align: left;
}

.social-media h3 {
    margin: 0 0 16px 0;
    font-size: 1.1em;
    font-weight: 700;
    font-family: sans-serif;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95em;
    font-family: sans-serif;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    font-family: sans-serif;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.5em;
    }

    .community-articles {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

