/* ── EPR Types Grid ─────────────────────────────────────────── */
.epr-types-section {
    padding: 60px 0;
    background: #f8fafc;
}
.guide-disp {
    padding: 5px;
}

.epr-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.epr-type-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.epr-type-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.epr-type-card--cta {
    background: var(--primary-color, #1565c0);
    border-color: var(--primary-color, #1565c0);
    color: #ffffff;
}

.epr-type-card--cta h3,
.epr-type-card--cta p {
    color: #ffffff;
}

.epr-type-icon {
    font-size: 2rem;
    line-height: 1;
}

.epr-type-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color, #1a202c);
}

.epr-type-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.epr-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.epr-type-card ul li {
    font-size: 0.85rem;
    color: #4a5568;
    padding-left: 16px;
    position: relative;
}

.epr-type-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color, #1565c0);
    font-weight: 700;
}

.epr-type-card--cta ul li {
    color: rgba(255, 255, 255, 0.9);
}

.epr-type-card--cta ul li::before {
    color: rgba(255, 255, 255, 0.9);
}

.epr-type-link {
    display: inline-block;
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color, #1565c0);
    text-decoration: none;
}

.epr-type-link:hover {
    text-decoration: underline;
}

.epr-cta-inline {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color, #1565c0) !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.epr-cta-inline:hover {
    background: #f0f4ff;
    text-decoration: none;
}

/* ── FAQ Section ────────────────────────────────────────────── */
.epr-faq-section {
    padding: 60px 0;
    background: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.faq-item[open] {
    border-color: var(--primary-color, #1565c0);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--heading-color, #1a202c);
    cursor: pointer;
    list-style: none;
    line-height: 1.5;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-color, #1565c0);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-question:hover {
    background: #f8faff;
}

.faq-answer {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 8px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-answer ul li {
    font-size: 0.9rem;
    color: #4a5568;
}

/* ── Fee Note ───────────────────────────────────────────────── */
.epr-fee-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #4a5568;
    background: #f0f4ff;
    border-left: 3px solid var(--primary-color, #1565c0);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
}

.epr-fee-note a {
    color: var(--primary-color, #1565c0);
    font-weight: 600;
    text-decoration: none;
}

.epr-fee-note a:hover {
    text-decoration: underline;
}

/* ── Deadline Card Enhancement ──────────────────────────────── */
.deadline-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--heading-color, #1a202c);
}

/* ── Process Section h2 fix ─────────────────────────────────── */
.process-card-head h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .epr-types-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .faq-answer {
        padding: 0 16px 14px;
    }
}
.breadcrumbs {
    padding: 10px 0;
    margin-bottom: 10px;
}
.contact-links li,
.epr-compliance-checklist li,
.epr-compliance-checklist2 li,
.who-needs ul {
    list-style: none;
}
#fee-table-header,
.Deadlines,
.Professional-fee,
.connect-epr-reg,
.cta-section,
.parallax-form h3,
.section-header {
    text-align: center;
}
:root {
    --primary-color: #2e86ab;
    --secondary-color: #f18f01;
    --accent-color: #c73e1d;
    --light-color: #f7f7ff;
    --dark-color: #2b2d42;
    --text-color: #333333;
    --text-light: #6d6d6d;
    --success-color: #48a14d;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Poppins, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}
section {
    padding: 20px 0;
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    section {
        padding: 10px 0;
    }
}
h1,
h2,
h3,
h4 {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}
h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.epr-hero {
    background: radial-gradient(circle, #4d527f 100%, transparent 10%);
    color: #fff;
    padding: 40px 0;
}
strong {
    font-weight: 500;
}
.container-registration {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 480px;
}
.hero-content,
.hero-visual {
    flex: 1;
}
.hero-visual {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: none;
    overflow: hidden;
    display: block;
    object-fit: cover;
}
.compliance-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.badge,
.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}
.hero-heading {
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    font-weight: 700;
    line-height: 1.22;
}
.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}
.subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-bottom: 30px;
    color: #fff;
}
.trust-badges {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 500;
}
.primary-cta,
.secondary-cta {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
}
.badge svg {
    width: 18px;
    height: 18px;
}
.cta-group {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}
.primary-cta {
    background: #ffc107;
    color: #0d47a1;
    font-weight: 700;
    transition: transform 0.3s;
}
.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}
.secondary-cta {
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s;
}
.social-proof {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
    color: #f9f9f9;
}
.hero-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.who-needs {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}
.who-needs h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}
.who-needs p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}
.who-needs ul {
    padding-left: 0;
    margin-bottom: 1rem;
}
.who-needs li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.who-needs li i {
    margin-top: 0.25rem;
    font-size: 1rem;
}
.epr-eligibility-list i {
    color: var(--success-color);
    margin-right: 0.5rem;
}
.epr-eligibility-list li,
.epr-eligibility-list p {
    margin-bottom: 0.5rem;
}
#epr-section-heading {
    text-align: center;
    padding: 1rem;
}
@media (max-width: 768px) {
    .who-needs h3 {
        font-size: 1.2rem;
    }
    .who-needs {
        margin-bottom: 0;
    }
    .who-needs li,
    .who-needs p {
        font-size: 0.95rem;
    }
    .epr-hero {
        background: linear-gradient(135deg, #1976d2 0, #0d47a1 100%);
        color: #fff;
        padding: 40px 0;
    }
    .epr-hero {
        font-size: 10px;
    }
    .epr-hero p {
        font-size: 15px;
    }
    .epr-intro-heading-smaller {
        font-size: 1.4rem;
    }
    .epr-compliance-checklist2 {
        padding: 1rem 0;
        background-color: #fff;
    }
}
.epr-compliance-checklist2 {
    padding: 1rem;
    background-color: #fff;
}
.epr-regulations {
    padding: 6rem 4rem;
    background-color: #f8fafc;
}
.epr-compliance-checklist {
    padding: 1rem 2rem;
    background-color: #fff;
}
.regulations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.regulation-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.1rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: var(--transition);
}
.regulation-item:hover .regulation-icon {
    transform: rotate(5deg) scale(1.1);
}
.feature-item:last-child,
.regulation-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.regulation-icon {
    flex-shrink: 0;
    background-color: rgba(46, 134, 171, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}
.feature-item:nth-child(2) .feature-icon,
.regulation-item:nth-child(2) .regulation-icon {
    background-color: rgba(241, 143, 1, 0.1);
}
.feature-item:nth-child(3) .feature-icon,
.regulation-item:nth-child(3) .regulation-icon {
    background-color: rgba(199, 62, 29, 0.1);
}
.feature-item:nth-child(4) .feature-icon,
.regulation-item:nth-child(4) .regulation-icon {
    background-color: rgba(72, 161, 77, 0.1);
}
.regulation-item:nth-child(5) .regulation-icon {
    background-color: rgba(46, 134, 171, 0.1);
}
.epr-regulations h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.regulation-content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}
.regulation-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}
.regulations-summary {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.offer-img,
.parallax-form-container,
.process-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.summary-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}
.summary-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.parallax-form button,
.parallax-form input {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    transition: var(--transition);
    width: 100%;
}
.regulation-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.assistance-image:hover,
.regulation-image img:hover {
    transform: translateY(-5px);
}
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.assistance-grid,
.offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.process-card {
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
}
.process-card:hover {
    transform: translateY(-10px);
}
.process-card-head {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
}
.process-card-head h4 {
    color: #fff;
    margin: 0;
}
.process-card-details {
    padding: 25px;
}
.process-card-details ul {
    list-style-type: none;
}
.process-card-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--text-light);
}
.process-card-details li:before {
    content: "•";
    color: var(--secondary-color);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}
.offer-container {
    gap: 40px;
    align-items: center;
    justify-self: center;
    position: relative;
}
.offer-img {
    overflow: hidden;
}
.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.parallax-form-container {
    background: #fff;
    padding: 40px;
    height: 100%;
}
.offer-svg {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 8px;
}
.parallax-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    margin-top: 4rem;
}
.parallax-form input {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.parallax-form input:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.2);
}
.parallax-form button {
    padding: 15px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.parallax-form button:hover {
    background-color: #e07f00;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}
.epr-assistance {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}
.assistance-grid {
    gap: 4rem;
    align-items: center;
}
.assistance-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn,
.connect-epr-reg a,
.deadline-card {
    transition: var(--transition);
}
.assistance-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.assistance-content {
    padding-left: 2rem;
}
.assistance-features {
    list-style: none;
    margin: 2.5rem 0;
}
.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(46, 134, 171, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}
.feature-text h3 {
    font-size: 1.2rem;
    color: #2b2d42;
    margin-bottom: 0;
}
.feature-text p {
    font-size: 0.95rem;
    color: #6d6d6d;
    margin-bottom: 0;
}
.btn-secondary {
    background-color: #2e86ab;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #2b2d42;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.Professional-fee {
    background-color: #f9f9f9;
    padding: 60px 0;
}
.Professional-fee h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}
.section-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 500;
}
.deadline-card,
.fee-table {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.fee-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
}
.fee-table td,
.fee-table th {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.fee-table th {
    background-color: var(--primary-color);
    color: #fff;
}
.fee-table tr:last-child td {
    border-bottom: none;
}
.fee-table tr:hover {
    background-color: #f5f5f5;
}
.Deadlines {
    background-color: #fff;
}
.Deadlines h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
}
.deadline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.deadline-card {
    background: #f9f9f9;
    padding: 30px;
}
.deadline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.deadline-card p {
    font-weight: 500;
    color: var(--text-color);
}
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0, #1a5276 100%);
    color: #fff;
    padding: 100px 0;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}
.btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}
.btn:hover {
    background-color: #e07f00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.connect-epr-reg {
    background-color: var(--dark-color);
    color: #fff;
    padding: 40px 0;
}
.connect-epr-reg p {
    color: #fff;
    font-size: 18px;
    line-height: 2.5;
}
.connect-epr-reg a {
    color: var(--secondary-color);
    text-decoration: none;
}
.connect-epr-reg a:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 992px) {
    .container-registration,
    .cta-group {
        flex-direction: column;
    }
    h1 {
        font-size: 2rem;
    }
    .hero-visual {
        display: none;
    }
    .assistance-grid,
    .regulations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .regulations-list {
        padding-right: 0;
    }
    .regulations-summary {
        position: static;
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    .regulation-icon,
    .regulation-item {
        margin-bottom: 1rem;
    }
    .regulation-item {
        padding-bottom: 1rem;
        flex-direction: row;
    }
    .offer-svg {
        position: absolute;
        right: 0;
        margin-top: 15rem;
        margin-right: 8px;
    }
    .assistance-content {
        padding: 1rem;
    }
    .assistance-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .epr-assistance {
        padding: 1rem 0;
    }
    .offer-container {
        grid-template-columns: 1fr;
    }
    .fee-table thead th {
        font-size: 12px;
    }
    .fee-table td,
    .fee-table tr {
        padding: 2px;
        font-size: 10px;
    }
}
@media (max-width: 576px) {
    .epr-regulations {
        padding: 2rem 0;
    }
    .regulation-item {
        padding: 0;
        margin-bottom: 0.1rem;
    }
    .summary-card {
        padding: 1.5rem;
    }
    .container {
        padding: 0 20px;
    }
    .who-needs h4 {
        font-size: 1rem;
        margin-left: 10px;
    }
    .connect-epr-reg p {
        font-size: 16px;
        line-height: 2;
    }
}
.epr-intro-section {
    padding: 80px 0;
    background: #f8fafc;
}
.container-epr-intro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-tag,
.section-tag2 {
    display: inline-block;
    background: #e3f2fd;
    color: #0d47a1;
    padding: 6px 15px;
    font-weight: 600;
}
.section-header {
    margin-bottom: 50px;
}
.section-tag {
    border-radius: 50px;
    margin-bottom: 15px;
}
.section-tag2 {
    border-radius: 0 50px 50px 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.definition-card,
.regulation-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.definition-card {
    display: flex;
    gap: 20px;
}
.card-icon svg {
    width: 40px;
    height: 40px;
}
.card-content h3 {
    font-size: 1.5rem;
    color: #263238;
    margin-bottom: 15px;
}
.highlight-text {
    background: #fff9c4;
    padding: 2px 5px;
    font-weight: 500;
}
.compliance-note,
.year-badge {
    background: #ffebee;
    color: #d32f2f;
}
.key-points {
    margin-top: 20px;
}
.point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.point svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.regulation-card h3 {
    font-size: 1.5rem;
    color: #263238;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.year-badge {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.regulation-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.regulation-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
.epr-regulations .regulation-icon {
    align-items: start;
}
.regulation-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.regulation-icon.plastic {
    background: #e8f5e9;
    color: #2e7d32;
}
.regulation-icon.ewaste {
    background: #e3f2fd;
    color: #1565c0;
}
.regulation-icon.battery {
    background: #fff8e1;
    color: #ff8f00;
}
.regulation-item h4 {
    margin: 0;
    color: #0d47a1;
    font-size: 1.1rem;
}
.regulation-item p {
    margin: 1px 0 0;
    opacity: 0.9;
}
.compliance-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 500;
}
.compliance-note svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .fee-table th {
        font-size: 14px;
    }
    .fee-table td,
    .fee-table th {
        padding: 4px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    .content-grid,
    .deadline-cards,
    .process {
        grid-template-columns: 1fr;
    }
    .parallax-form-container,
    .who-needs {
        padding: 20px;
    }
    .process {
        margin: 0;
    }
    .section-tag2 {
        display: inline-block;
        background: #e3f2fd;
        color: #0d47a1;
        padding: 0 15px;
        border-radius: 0 50px 50px 0;
        font-weight: 600;
        margin-bottom: 15px;
    }
    h2 {
        font-size: 1.8rem;
    }
    .definition-card {
        flex-direction: column;
    }
}


/* ============================================================
   CSS2 — UNIQUE ADDITIONS (duplicates removed)
   Removed: .section-badge | .regulation-list | .regulation-item
            .regulation-icon | .regulation-item h4
            .parallax-form-container (inside @media) | .regulation-card | h2
   ============================================================ */

.epr-popup,
.penalties h2 {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 700;
}
#faq-answer-5 li,
.checklist,
.connect-epr-reg li {
    list-style: none;
}
.epr-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: red;
    justify-content: center;
    text-align: center;
    height: 60px;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    z-index: 9999;
    animation: 2s infinite twinkle;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}
.epr-popup p {
    margin: 0;
}
#faq-answer-5 li {
    padding: 5px 0;
}
#faq-answer-5 li i {
    color: #4caf50;
    margin-right: 8px;
}
@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.penalties-container {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.penalties {
    background: linear-gradient(135deg, #ffe6c4 0, #ff9200 100%);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
    color: #fff;
    text-align: center;
    border-left: 4px solid #ff9800;
}
.penalties-header {
    margin-bottom: 30px;
}
.penalties h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    justify-content: center;
    gap: 10px;
}
.divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 15px;
}
.subheading {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}
.penalties-content ul {
    list-style: none;
    padding: 0;
    max-width: 450px;
    margin: 0 auto;
}
.penalties-content li {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 6px;
    text-align: left;
    transition: 0.3s;
    border-left: 3px solid #ff9800;
}
.penalties-content li:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(3px);
}
.icon {
    width: 18px;
    height: 18px;
    fill: #ffeb3b;
    margin-right: 12px;
    flex-shrink: 0;
}
.permanent-whatsapp,
.permanent-whatsapp img {
    height: auto;
    width: 50px;
}
.permanent-whatsapp {
    display: block;
    position: fixed;
    top: 97%;
    left: 20px;
    transform: translateY(-90%);
    z-index: 1000;
}
.permanent-whatsapp a:hover img {
    transform: scale(1.1);
}
#who-eligible-for-epr-compliance {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    padding-bottom: 10px;
}
.offer-svg2 {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 8px;
}
@media (max-width: 992px) {
    .offer-svg2 {
        left: 0;
        margin-left: 8px;
    }
    .parallax-form-container {
        margin-top: 8rem;
    }
}
.epr-compliance-hero {
    background: linear-gradient(135deg, #0d47a1 0, #1976d2 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.epr-compliance-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
.hero-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    color: #fff;
}
.cta-button,
.section-badge {
    color: #0d47a1;
    border-radius: 50px;
}
.compliance-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0 35px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.cta-button {
    background: #ffc107;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}
.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}
.epr-compliance-intro {
    padding: 60px 0;
    background: #f8fafc;
}
.intro-header {
    text-align: center;
    margin-bottom: 50px;
}
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.definition-card-compliance,
.regulation-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.card-header h3 {
    font-size: 1.4rem;
    color: #263238;
}
.checklist {
    padding: 0;
    margin-top: 20px;
}
.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}
.highlight1 {
    background: #fff9c4;
    padding: 2px 5px;
}
@media (max-width: 768px) {
    .penalties {
        padding: 30px 20px;
    }
    .penalties h2 {
        font-size: 1.5rem;
    }
    .penalties-container {
        padding: 0 15px;
    }
    .permanent-whatsapp {
        display: block;
    }
    .epr-compliance-hero h1 {
        font-size: 1.8rem;
    }
    .compliance-highlights {
        flex-direction: column;
        gap: 10px;
    }
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}
