section.hero-standard.oznakowanie-hero {
    background: #000;
}

.oznakowanie-button-primary {
    display: inline-block;
    padding: 18px 36px;
    background: #00b1cf;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oznakowanie-button-primary:hover {
    background: #0088a0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 177, 207, 0.3);
}

/* Info Section */
.oznakowanie-info {
    padding: 120px 0;
    background: #fff;
}

.oznakowanie-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.oznakowanie-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.oznakowanie-content h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 2rem;
    font-weight: 800;
}

.oznakowanie-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.oznakowanie-list {
    list-style: none;
    margin-top: 2rem;
}

.oznakowanie-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #1e3a5f;
}

.oznakowanie-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Standards Section */
.oznakowanie-standards {
    padding: 120px 0;
    background: #f8fafc;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.standard-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-10px);
}

.standard-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 177, 207, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #00b1cf;
}

.standard-card h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

/* Highlight Box */
.oznakowanie-highlight-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 40px auto;
    border: 1px solid rgba(0, 177, 207, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oznakowanie-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #00b1cf;
}

.oznakowanie-highlight-box h2 {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.oznakowanie-highlight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

/* Mobile */
@media (max-width: 1024px) {
    .oznakowanie-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .oznakowanie-image {
        height: 350px !important;
        order: 2;
    }

    .oznakowanie-content {
        order: 1;
    }

    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .oznakowanie-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .oznakowanie-hero__container {
        padding: 0 1.5rem;
    }

    .oznakowanie-hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .oznakowanie-hero__subtitle {
        font-size: 0.9rem;
    }

    .oznakowanie-hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .oznakowanie-info,
    .oznakowanie-standards {
        padding: 60px 0;
    }

    .oznakowanie-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .oznakowanie-content p {
        font-size: 1rem;
    }

    .oznakowanie-image {
        height: 250px !important;
    }

    .standards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .standard-card {
        padding: 30px 20px;
    }

    .oznakowanie-highlight-box {
        padding: 40px 20px;
        margin: 20px 15px;
    }

    .oznakowanie-highlight-box h2 {
        font-size: 1.6rem;
    }

    .oznakowanie-highlight-box p {
        font-size: 1rem;
    }
}