* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #03045E;
    --primary-yellow: #F8BF01;
    --text-dark: #454545;
    --text-gray: #4F4F4F;
    --text-black: #000000;
    --background-light: #fbf6f6;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--white);
    overflow-x: hidden;
    background-color: var(--primary-blue);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Hero Section */
.international-hero {
    position: relative;
    height: 100vh;
    min-height: min(800px, 100vh);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 50%;
    left: max(60px, 10%);
    transform: translateY(-50%);
    max-width: min(800px, 80%);
    color: var(--white);
}

.hero-content .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.hero-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 330%;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
}

.hero-highlight {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.hero-description:last-child {
    margin-bottom: 0;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 60px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.nav-logo img {
    height: 39px;
    width: auto;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    opacity: 0.8;
}

.btn-contact {
    background-color: var(--primary-yellow);
    color: var(--primary-blue) !important;
    padding: 8px 20px;
    border-radius: 11px;
}

.btn-contact:hover {
    background-color: #f0b601;
    opacity: 1 !important;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 40px 0;
    background-color: var(--primary-blue);
}

.breadcrumb {
    background-color: var(--white);
    color: var(--primary-blue);
    display: inline-block;
    padding: 13px 28px;
    border-radius: 23px;
    font-size: 20px;
    font-weight: 700;
    margin-left: 60px;
}

/* International Section */
.international-section {
    padding: 70px 0;
    background-color: var(--primary-blue);
}

.international-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.international-text {
    flex: 1;
    max-width: 700px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.international-highlight {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 25px;
}

.international-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 32px;
}

.international-image {
    flex: 0 0 420px;
}

.international-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
    opacity: 0.85;
}

/* Portfolio Section */
.portfolio-section {
    padding: 70px 0;
    background-color: var(--primary-blue);
}

.portfolio-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.portfolio-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400%;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
}

.portfolio-highlight {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 24px;
}

.portfolio-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 32px;
    max-width: 1400px;
}

.portfolio-actions {
    margin-bottom: 40px;
}

.btn-view-products {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 13px 28px;
    border: none;
    border-radius: 23px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-products:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Portfolio Table */
.portfolio-table-wrapper {
    background-color: var(--white);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 60px;
}

.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

.portfolio-table thead tr {
    border-bottom: 3px solid var(--text-black);
}

.portfolio-table th {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    padding: 20px;
    text-align: left;
    line-height: 1.5;
}

.portfolio-table tbody tr {
    border-bottom: 3px solid var(--text-black);
}

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

.portfolio-table td {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    padding: 11px 20px;
    line-height: 1.21;
}

.portfolio-table .col-number {
    width: 107px;
    text-align: left;
}

.portfolio-table .col-product {
    text-align: left;
}

.portfolio-table .col-status {
    width: 406px;
    text-align: left;
}

.expertise-title {
    margin-top: 60px;
}

/* Footer */
.footer {
    background-color: var(--background-light);
    padding: 80px 0;
    border-radius: 10px 10px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 60px;
    align-items: start;
    position: relative;
}

/* Left Section: Pages */
.footer-pages {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Center Section: Logo and Social Icons */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 318px;
    height: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.social-icon {
    width: 32px;
    height: 32px;
}

/* Right Section: Address and Contact */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-address .footer-title {
    text-align: left;
    margin-bottom: 20px;
}

.footer-contact .footer-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-item,
.address-item {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item span,
.address-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-icon,
.address-icon {
    width: 15px;
    height: 15px;
    margin-top: 6px;
    flex-shrink: 0;
}

.address-item p {
    max-width: 275px;
    line-height: 1.4;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-emails span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Footer Bottom: Copyright and Legal */
.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.footer-legal .separator {
    color: var(--text-dark);
    opacity: 0.5;
}

/* Page Navigation Sidebar */
.page-nav-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-nav-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 11px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-nav-btn:hover {
    background-color: #f0b601;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-blue);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
}

.page-transition-overlay.active {
    transform: translateY(0);
}

.page-transition-overlay.slide-out {
    transform: translateY(-100%);
}

.transition-logo {
    width: 300px;
    height: auto;
    opacity: 0;
    transition: opacity 300ms ease;
}

.page-transition-overlay.active .transition-logo {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .navbar {
        padding: 32px 40px;
    }

    .container {
        padding: 0 60px;
    }

    .breadcrumb {
        margin-left: 60px;
    }

    .footer-container {
        padding: 0 60px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 28px 30px;
    }

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .page-nav-sidebar {
        display: none;
    }

    .navbar {
        padding: 24px 20px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu li a {
        font-size: 15px;
    }

    .container {
        padding: 0 40px;
    }

    .breadcrumb {
        margin-left: 40px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .hero-content {
        left: max(40px, 7%);
        max-width: min(700px, 85%);
    }

    .hero-highlight {
        font-size: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .international-highlight,
    .portfolio-highlight {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .international-description,
    .portfolio-description {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .international-content {
        flex-direction: column;
        gap: 40px;
    }

    .international-text {
        max-width: 100%;
    }

    .international-image {
        flex: 1;
        max-width: 100%;
    }

    .international-section,
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-table-wrapper {
        overflow-x: auto;
    }

    .portfolio-table th,
    .portfolio-table td {
        font-size: 16px;
        padding: 12px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-center {
        gap: 30px;
    }

    .footer-logo img {
        width: 240px;
    }

    .footer-right {
        gap: 40px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .international-hero {
        min-height: 100svh;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
        padding-right: 5%;
    }

    .hero-highlight {
        font-size: 26px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .international-highlight,
    .portfolio-highlight {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .international-description,
    .portfolio-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .breadcrumb {
        margin-left: 20px;
        font-size: 18px;
    }

    .international-section,
    .portfolio-section {
        padding: 45px 0;
    }

    .portfolio-table th,
    .portfolio-table td {
        font-size: 14px;
        padding: 10px 12px;
    }

    .portfolio-table .col-number {
        width: 60px;
    }

    .portfolio-table .col-status {
        width: 200px;
    }

    .footer {
        padding: 50px 0;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .breadcrumb {
        margin-left: 20px;
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-highlight {
        font-size: 22px;
    }

    .hero-description {
        font-size: 15px;
        text-align: justify;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .international-highlight,
    .portfolio-highlight {
        font-size: 24px;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .international-description,
    .portfolio-description {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .international-section,
    .portfolio-section {
        padding: 40px 0;
    }

    .portfolio-table {
        font-size: 12px;
    }

    .portfolio-table th,
    .portfolio-table td {
        font-size: 12px;
        padding: 8px 10px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .footer-copyright p,
    .footer-legal a {
        font-size: 13px;
    }

    .footer-legal {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contact Form Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 4, 94, 0.85);
    backdrop-filter: blur(8px);
}

.contact-modal-dialog {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.contact-modal.active .contact-modal-dialog {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 0;
}

.contact-modal-close:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.contact-modal-content {
    padding: 50px 60px;
}

.contact-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-modal-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #D32F2F;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    border: 2px solid #fbf6f6;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(3, 4, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.btn-submit {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 14px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 16px;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #f0b601;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: #F0F7F0;
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.contact-success-message.active {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.contact-success-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.contact-success-message p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Modal Responsive Styles */
@media (max-width: 1024px) {
    .contact-modal-content {
        padding: 40px 45px;
    }

    .contact-modal-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-modal-content {
        padding: 35px 30px;
    }

    .contact-modal-title {
        font-size: 28px;
    }

    .contact-modal-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact-modal-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }

    .btn-submit {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .contact-modal-dialog {
        width: 95%;
        max-height: 95vh;
    }

    .contact-modal-content {
        padding: 30px 20px;
    }

    .contact-modal-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-modal-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-modal-close {
        top: 12px;
        right: 12px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 10px 14px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 12px 30px;
    }

    .contact-success-message {
        padding: 30px 20px;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 30px;
        margin-bottom: 16px;
    }

    .contact-success-message h3 {
        font-size: 24px;
    }

    .contact-success-message p {
        font-size: 15px;
    }
}

/* Product List Section */
.product-list-section {
    padding: 70px 0;
    background-color: var(--white);
}

.product-list-section .section-title {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.product-list-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280%;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
}

.product-list-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 900px;
}

/* Therapy Filter Dropdown */
.therapy-filter {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.therapy-filter label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.therapy-filter select {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 12px 44px 12px 16px;
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2303045E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    min-width: 280px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.therapy-filter select:hover {
    border-color: var(--primary-yellow);
}

.therapy-filter select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(248, 191, 1, 0.2);
}

.btn-download-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-download-products:hover {
    background-color: #e5ac00;
    transform: translateY(-2px);
}

/* Therapy Area Groups */
.therapy-group {
    margin-bottom: 50px;
}

.therapy-group:last-child {
    margin-bottom: 0;
}

.therapy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-yellow);
    display: inline-block;
}

/* Product Table */
.product-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    background-color: var(--white);
}

.product-table thead {
    background-color: var(--primary-blue);
}

.product-table th {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 20px;
    text-align: left;
}

.product-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

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

.product-table tbody tr:hover {
    background-color: #f8f9fa;
}

.product-table td {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 14px 20px;
    color: var(--text-dark);
    vertical-align: middle;
}

/* Column widths */
.product-table .col-no {
    width: 60px;
    text-align: center;
}

.product-table .col-product {
    width: 40%;
}

.product-table .col-dosage {
    width: 25%;
}

.product-table .col-status {
    width: 25%;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.status-approved {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-filed {
    background-color: #e3f2fd;
    color: #1565c0;
}

.status-pipeline {
    background-color: #f5f5f5;
    color: #616161;
}

/* Product List Responsive */
@media (max-width: 1024px) {
    .product-list-section {
        padding: 60px 0;
    }

    .product-list-intro {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .therapy-title {
        font-size: 22px;
    }

    .therapy-group {
        margin-bottom: 40px;
    }

    .product-table th {
        padding: 14px 16px;
        font-size: 14px;
    }

    .product-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-list-section {
        padding: 45px 0;
    }

    .product-list-intro {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .therapy-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 30px;
    }

    .therapy-filter label {
        font-size: 15px;
    }

    .therapy-filter select {
        width: 100%;
        min-width: unset;
        font-size: 15px;
        padding: 11px 40px 11px 14px;
    }

    .btn-download-products {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 15px;
    }

    .therapy-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .therapy-group {
        margin-bottom: 35px;
    }

    .product-table th,
    .product-table td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .status-badge {
        padding: 4px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .product-list-section {
        padding: 40px 0;
    }

    .product-list-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .therapy-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .therapy-group {
        margin-bottom: 30px;
    }

    .product-table {
        min-width: 550px;
    }

    .product-table th,
    .product-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .status-badge {
        padding: 3px 8px;
        font-size: 11px;
    }
}

