<style>html
{
    scroll-padding-top: 104px;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

body
{
    margin: 0;
    padding: 0;
    font-family: "FKGroteskNeue", "Geist", "Inter", -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #F5E6D3;
    color: #222;
    display: flex;
    flex-direction: column;
}

.header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #D2691E 0%, #C55A14 100%);
    color: white;
    padding: 0px 0 16px 0;
}

.header-container
{
    width: 100%;
    display: flex;
    gap: 8px;
}

.site-logo
{
    width: 100%;
    max-width: 60px;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 8px;
    margin-left: 16px;
    background: none;
}

.logo-circle
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
}

.logo-circle img
{
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.header-text
{
    display: flex;
    flex-direction: column;
}

.header_title
{
    color: white;
    margin-top: 17px;
    margin-bottom: 0px;
    font-size: 1.7rem;
    font-weight: 550;
}

.header_subtitle
{
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.nav-links
{
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 32px;
    color: white;
    font-weight: 550;
}

.nav-links a
{
    color: white;
    text-decoration: none;
}

.hamburger
{
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.un-seen
{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Hero Section */
.hero
{
    min-height: 50vh;
    background: #F5E6D3;
    color: rgba(19, 52, 59, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 16px;
    margin-top: 104px;
}

.hero h1
{
    font-size: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-subtitle
{
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(19, 52, 59, 1);
    max-width: 600px;
}

/* about */
.section-title
{
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
    color: rgba(19, 52, 59, 1);
}

.section-intro
{
    text-align: center;
    font-size: 16px;
    color: rgba(98, 108, 113, 1);
    max-width: 800px;
    margin: 0 auto 32px;
}

.about
{
    padding: 32px 0;
    background: rgba(255, 255, 253, 1);
}

/* Card component */
.card
{
    background-color: rgba(255, 255, 253, 1);
    border-radius: 12px;
    border: 1px solid rgba(94, 82, 64, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover
{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.card__body
{
    padding: 16px;
}

.card__header,
.card__footer
{
    padding: 16px;
    border-bottom: 1px solid rgba(94, 82, 64, 0.12);
}

.competition-cards
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    margin-right: 16px;
    margin-left: 16px;
}

.competition-card
{
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.competition-card:hover
{
    transform: translateY(-4px);
}

.competition-card h3
{
    color: rgba(33, 128, 141, 1);
    margin-bottom: 8px;
}

.competition-card:nth-child(4)
{
    grid-column: 2 / 3;
}

.card__body
{
    padding: 16px;
}

.card__body p
{
    font-size: 14px;
}

.status
{
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 12px;
}

.status--info
{
    background-color: rgba(98, 108, 113, 0.15);
    color: rgba(98, 108, 113, 1);
    border: 1px solid rgba(98, 108, 113, 0.15);
}

.container
{
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
    max-width: 1280px;
}

.features
{
    padding: 32px 0;
    background: rgba(255, 255, 253, 1);
}

.features-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-item
{
    text-align: center;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover
{
    transform: translateY(-4px);
}

.feature-icon
{
    font-size: 3rem;
    margin-bottom: var(--space-16);
}

.feature-item h4
{
    color: var(--color-text);
    margin-bottom: var(--space-8);
}

.search-section
{
    margin-top: 32px;
    padding: 32px 0;
}

.search-container
{
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.search-filters
{
    display: grid;
    gap: 20px;
}

.select-button:disabled
{
    background: #f5f5f5;
    color: #aaa;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.filter-row
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.filter-group
{
    margin-bottom: 12px;
}

.custom-select
{
    position: relative;
    width: 100%;
}

.select-button
{
    width: 100%;
    padding: 10px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    position: relative;
}

.select-button:after
{
    content: "▼";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
}

.select-dropdown
{
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.option
{
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
}

.option:hover
{
    background: #f5f5f5;
}

.form-label
{
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 12px;
    color: #D2691E;
}

.btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    position: relative;
}

.btn:focus-visible
{
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 128, 141, 0.4);
}

.btn-primary
{
    background: #D2691E;
    color: rgba(252, 252, 249, 1);
    z-index: 2;
}

.btn-primary:hover
{
    background: #B8571A;
}

.btn-primary:active
{
    background: rgba(26, 104, 115, 1);
}

.stats
{
    background: #F5E6D3;
}

.stats-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
    gap: 24px;
}

.stat-item
{
    text-align: center;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover
{
    transform: translateY(-4px);
}

.stat-number
{
    font-size: 30px;
    font-weight: 600;
    color: rgba(33, 128, 141, 1);
    display: block;
}

.stat-label
{
    font-size: 16px;
    color: rgba(98, 108, 113, 1);
}

footer
{
    background: #333;
    color: white;
    padding: 1rem 0 2rem 0;
    margin-top: 3rem;
}

.footer-content
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-section
{
    margin-bottom: 2rem;
}

.footer-section h3
{
    color: #ffda44;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-links
{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-links a
{
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 218, 68, 0.2);
    border-radius: 25px;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-links a:hover
{
    background: #ffda44;
    color: #333;
    transform: translateY(-2px);
}

.copy-email-btn
{
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.copy-email-btn:hover
{
    text-decoration: underline;
}

.copy-msg
{
    margin-left: 10px;
    color: #27ae60;
    font-size: 0.95rem;
}

.social-links
{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a
{
    color: white;
    font-size: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover
{
    background: #ffda44;
    color: #333;
    transform: scale(1.1);
}

.footer-bottom
{
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

h2,
h3,
h4,
h5,
h6
{
    margin: 0;
    font-weight: 550;
    line-height: 1.2;
    color: rgba(19, 52, 59, 1);
    letter-spacing: -0.01em;
}

h2
{
    font-size: 24px;
}

h3
{
    font-size: 20px;
}

h4
{
    font-size: 18px;
}

h5
{
    font-size: 16px;
}

h6
{
    font-size: 14px;
}

.hamburger
{
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 950px)
{
    .hero 
    {
        margin-top: 88px;
    }

    .site-logo
    {
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .logo-circle
    {
        width: 48px;
        height: 48px;
    }

    .logo-circle img
    {
        width: 40px;
        height: 40px;
    }

    .header_title
    {
        font-size: 1.4rem;
    }

    .header_subtitle
    {
        font-size: 0.78rem;
    }

    .competition-cards
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px)
{
    .hamburger
    {
        display: block;
        margin-left: auto;
        margin-right: 16px;
    }

    .nav-links
    {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        transform: translateX(-100%);
        transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active
    {
        transform: translateX(0);
        background-color: #D2691E;
    }
}

@media (max-width: 570px)
{
    .hero h1
    {
        font-size: 28px;
    }

    .hero-subtitle
    {
        font-size: 18px;
    }

    .competition-cards
    {
        display: block;
    }

    .competition-card
    {
        margin-top: 16px;
    }

    .features-grid
    {
        margin-top: 16px;
    }

    .header-container
    {
        gap: 0px;
    }

    .container
    {
        padding: 16px;
    }

    .search-section
    {
        padding: 0;
    }

    .search-container
    {
        padding: 16px;
    }

    .search-filters
    {
        gap: 0;
    }

    .form-label
    {
        margin-bottom: 4px;
    }

    .filter-row
    {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-logo
    {
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .logo-circle
    {
        width: 48px;
        height: 48px;
    }

    .logo-circle img
    {
        width: 40px;
        height: 40px;
    }

    .header_title
    {
        font-size: 1.4rem;
    }

    .header_subtitle
    {
        font-size: 0.78rem;
    }

}

@media (max-width: 413px)
{
    .site-logo
    {
        max-width: 48px;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .logo-circle
    {
        width: 40px;
        height: 40px;
    }

    .logo-circle img
    {
        width: 36px;
        height: 36px;
    }

    .header_title
    {
        font-size: 1.2rem;
    }

    .header_subtitle
    {
        font-size: 0.64rem;
    }

    .nav-links
    {
        top: 62px;
    }
}

</style>