/* ===================================
   MEDICINAL PRODUCTS PAGE ADDITIONAL STYLES
   =================================== */

/* Base Med Styles */
.med-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1E3A8A 0%, #374151 100%);
}

.med-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.med-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.90) 0%, rgba(55, 65, 81, 0.85) 100%);
    z-index: 2;
}

.med-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
}

.med-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.med-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Med Section Base */
.med-section {
    padding: 80px 0;
}

.med-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.med-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

/* Approach List */
.approach-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.approach-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.6;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Registration Navigation Section */
.med-navigation-section {
    background: #F9FAFB;
}

.registration-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reg-nav-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reg-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border-color: #1E3A8A;
}

.reg-nav-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.reg-nav-card:hover .reg-nav-icon {
    transform: scale(1.1);
}

.reg-nav-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.reg-nav-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.75rem;
}

.reg-nav-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Med Regulatory Section */
.med-regulatory {
    position: relative;
    background: #F9FAFB;
    overflow: hidden;
}

.med-regulatory-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.med-regulatory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.90) 0%, rgba(55, 65, 81, 0.85) 100%);
    z-index: 2;
}

.med-regulatory-content {
    position: relative;
    z-index: 3;
}

.med-regulatory .med-section-title {
    color: #FFFFFF;
}

.med-regulatory-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.med-regulatory-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Med Approach Section */
.med-approach {
    background: #FFFFFF;
}

.med-approach-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.med-approach-text p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Med Workflow Section */
.med-workflow {
    position: relative;
    background: #F9FAFB;
    overflow: hidden;
}

.med-workflow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.med-workflow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.90) 0%, rgba(55, 65, 81, 0.85) 100%);
    z-index: 2;
}

.med-workflow-content {
    position: relative;
    z-index: 3;
}

.med-workflow .med-section-title {
    color: #FFFFFF;
}

/* Med Services Section */
.med-services {
    background: #FFFFFF;
}

/* Med CTA Section */
.med-cta {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.med-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.88) 0%, rgba(16, 185, 129, 0.82) 100%);
    z-index: 1;
}

.med-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.med-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.med-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Types Grid (for виды регистрации) */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.type-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 2px solid #E5E7EB;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: #FFFFFF;
    border-color: #1E3A8A;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.type-card:hover .type-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.type-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.type-description {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.type-when {
    background: rgba(30, 58, 138, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.type-when strong {
    display: block;
    color: #1E3A8A;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.type-when ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-when li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #374151;
}

.type-when li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.type-when li:last-child {
    margin-bottom: 0;
}

/* External Links */
.link-external,
.link-external-small {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-external:hover,
.link-external-small:hover {
    color: #10B981;
    gap: 0.75rem;
}

.link-external i,
.link-external-small i {
    font-size: 0.85em;
    transition: transform 0.3s ease;
}

.link-external:hover i,
.link-external-small:hover i {
    transform: translateX(3px);
}

.link-external-small {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Med Definition Section */
.med-definition {
    background: #FFFFFF;
    padding: 80px 0;
}

.med-definition .med-regulatory-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.med-definition .med-regulatory-text p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Med Types Section */
.med-types {
    background: #F9FAFB;
    padding: 80px 0;
}

/* Med Approach enhanced */
.med-approach-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.med-approach-text li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
}

.med-approach-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Med Regulatory enhanced */
.med-regulatory-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.med-regulatory-text li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.med-regulatory-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Services List (Перечисления) */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item-med {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-item-med:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #1E3A8A;
}

.service-icon-med {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.service-item-med:hover .service-icon-med {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.service-item-med span {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
}

/* Categories List */
.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-item-med {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-item-med:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.category-icon-med {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #FFFFFF;
}

.category-item-med span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #374151;
}

/* Workflow Steps */
.workflow-steps-med {
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step-med {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workflow-step-med:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.workflow-step-med:last-child {
    margin-bottom: 0;
}

.step-number-med {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.step-content-med {
    flex: 1;
}

.step-title-med {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E3A8A;
    line-height: 1.4;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 768px) {
    .med-hero {
        min-height: 55vh;
    }

    .med-hero-title {
        font-size: 2.2rem;
    }

    .med-hero-subtitle {
        font-size: 1.1rem;
    }

    .med-section {
        padding: 60px 0;
    }

    .med-section-title {
        font-size: 2rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .type-card {
        padding: 2rem 1.5rem;
    }

    .type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .type-title {
        font-size: 1.2rem;
    }

    .type-description {
        font-size: 0.95rem;
    }

    .services-list,
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .workflow-step-med {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .step-number-med {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .med-cta {
        padding: 70px 0;
    }

    .med-cta-title {
        font-size: 2rem;
    }

    .med-cta-text {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .med-hero {
        min-height: 45vh;
    }

    .med-hero-title {
        font-size: 1.8rem;
    }

    .med-hero-subtitle {
        font-size: 1rem;
    }

    .med-section {
        padding: 40px 0;
    }

    .med-section-title {
        font-size: 1.7rem;
    }

    .type-card {
        padding: 1.5rem 1rem;
    }

    .type-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .type-title {
        font-size: 1.1rem;
    }

    .type-when {
        padding: 0.75rem 1rem;
    }

    .med-definition,
    .med-types {
        padding: 60px 0;
    }

    .services-list,
    .categories-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-item-med,
    .category-item-med {
        padding: 1.5rem 1rem;
    }

    .workflow-step-med {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step-number-med {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-title-med {
        font-size: 1.1rem;
    }

    .med-cta {
        padding: 60px 0;
    }

    .med-cta-title {
        font-size: 1.7rem;
    }

    .med-cta-text {
        font-size: 1rem;
    }
}

/* ===================================
   CLASSIFICATION TABLE SECTION
   =================================== */

.med-classification {
    background: #FFFFFF;
    padding: 80px 0;
}

.classification-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.classification-intro p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.classification-intro strong {
    color: #1E3A8A;
}

.classification-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.classification-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

.classification-table thead {
    background: linear-gradient(135deg, #1E3A8A, #374151);
}

.classification-table thead th {
    padding: 1.5rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.classification-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.classification-table tbody tr:last-child {
    border-bottom: none;
}

.classification-table tbody tr:hover {
    background: #F9FAFB;
}

.classification-table tbody td {
    padding: 1.5rem 1.25rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

.class-cell {
    text-align: center;
}

.class-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.class-badge.class-1 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.class-badge.class-2a {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.class-badge.class-2b {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.class-badge.class-3 {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.risk-cell {
    text-align: center;
    font-weight: 600;
}

.low-risk {
    color: #10B981;
}

.medium-risk {
    color: #3B82F6;
}

.elevated-risk {
    color: #F59E0B;
}

.high-risk {
    color: #EF4444;
}

.classification-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.classification-note .note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #F59E0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
}

.classification-note p {
    margin: 0;
    font-size: 1.05rem;
    color: #92400E;
    line-height: 1.7;
}

/* ===================================
   REGULATORY DOCUMENTS SECTION
   =================================== */

.med-regulatory-docs {
    background: #F9FAFB;
    padding: 80px 0;
}

.regulatory-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.regulatory-intro p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
}

.regulatory-docs-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.doc-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
}

.doc-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #1E3A8A;
}

.doc-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
}

.doc-content {
    flex: 1;
}

.doc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.doc-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10B981;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.doc-link:hover {
    gap: 0.75rem;
    color: #059669;
}

.doc-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.doc-link:hover i {
    transform: translateX(3px);
}

.regulatory-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: #DBEAFE;
    border-left: 4px solid #3B82F6;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.regulatory-note .note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
}

.regulatory-note p {
    margin: 0;
    font-size: 1.05rem;
    color: #1E40AF;
    line-height: 1.7;
}

/* ===================================
   PROCESS INFOGRAPHIC SECTION
   =================================== */

.med-process-infographic {
    position: relative;
    overflow: hidden;
    background: #1E3A8A;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(55, 65, 81, 0.88) 100%);
    z-index: 2;
}

.process-content {
    position: relative;
    z-index: 3;
}

.process-intro {
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.step-number-circle {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.step-info {
    flex: 1;
}

.step-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-text {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.timeline-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(16, 185, 129, 0.15);
    border-left: 4px solid #10B981;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-note .timeline-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
}

.timeline-note p {
    margin: 0;
    font-size: 1.05rem;
    color: #FFFFFF;
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE FOR NEW SECTIONS
   =================================== */

@media (max-width: 768px) {
    .classification-table thead th,
    .classification-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .class-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .classification-note,
    .regulatory-note,
    .timeline-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
    
    .doc-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .doc-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .classification-table-wrapper {
        border-radius: 8px;
    }
    
    .classification-table thead th,
    .classification-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .class-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }
    
    .doc-card {
        padding: 1.25rem;
    }
    
    .doc-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .doc-title {
        font-size: 1.05rem;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .step-number-circle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .step-heading {
        font-size: 1.1rem;
    }
    
    .step-text {
        font-size: 0.95rem;
    }
}
