:root {
    --primary-black: black;
    --primary-orange: #f58426;
    --bg-light: #f8f8f8;
    --text-dark: black;
    --text-grey: #666;
}

#custom_page{
    background-color: #f8f8f8;
}

body {
    color: var(--primary-black);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: opacity 0.3s;
    border: none;
    cursor: pointer;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
}

.btn-orange:hover {
    opacity: 0.9;
}

.highlight-orange {
    color: var(--primary-orange);
}

.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 2px solid #E98435;
    padding-bottom: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.active-badge {
    background-color: var(--primary-black);
    color: white !important;
    border-radius: 15px;
}

.hero {
    text-align: center;
    padding: 60px 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.infographic-section {
    padding: 40px 0;
    overflow: hidden;
}

.infographic-wrapper {
    position: relative;
    max-width: 700px;
    height: 450px;
    margin: 0 auto;
}

.bin-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 250px;
    height: 300px;
    background: #ffcc00;
    border: 5px solid #222;
    border-radius: 10px 10px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.recycle-logo-placeholder {
    position: absolute;
    top: 0;
    left: 50px;
    font-size: 100px;
    opacity: 0.1;
}

.floating-label {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid #eee;
    white-space: nowrap;
}

.items-list-section {
    text-align: center;
    padding: 40px 0;
}

.items-list-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.item-tags {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.small-note {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.warning-box {
    background-color: #333;
    color: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.warning-icon {
    font-size: 60px;
    min-width: 80px;
    text-align: center;
}

.how-it-works-section {
    padding: 50px 0;
}

.badge-left {
    border-bottom: 2px solid var(--primary-orange);
    color: var(--primary-black);
}

.how-it-works-section h2 {
    font-size: 42px;
    margin-bottom: 5px;
    font-weight: 700;
}

.subtitle {
    color: var(--text-dark);
    margin-bottom: 40px;
}

.steps-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.steps-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bin-placeholder-large {
    width: 300px;
    height: 350px;
    background: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 15px;
}

.steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-orange);
    background: #fdf5ef;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.step-desc {
    display: flex;
    flex-direction: column;
}

.closing-section {
    background-color: var(--primary-black);
    color: white;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.closing-section .badge {
    border-color: var(--primary-orange);
}

.closing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.closing-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.closing-note {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23f58426" opacity="0.2"/></svg>');
    border: 2px dashed var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: bold;
    border-radius: 10px;
}

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

    .infographic-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bin-placeholder {
        position: relative;
        transform: none;
        top: 0; left: 0;
        margin-bottom: 20px;
    }

    .floating-label {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 80%;
        text-align: center;
        justify-content: center;
    }

    .recycle-logo-placeholder {
        display: none;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .steps-layout {
        flex-direction: column-reverse;
    }

    .bin-placeholder-large {
        width: 100%;
        max-width: 300px;
    }

    .closing-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .closing-content .badge {
        margin: 0 auto 20px;
        display: table;
    }
}

.recycling_image {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.map_image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}
