/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #eb7800;
    --primary-dark: #c96400;
    --primary-light: #ff8c1a;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(235, 120, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 120, 0, 0.3) 0%, rgba(201, 100, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 24px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== PRODUCTS PREVIEW ===== */
.products-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    font-size: 14px;
}

.news-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* ===== COMPANY HISTORY ===== */
.company-history {
    padding: 80px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.history-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.history-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.history-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== MISSION AND VALUES ===== */
.mission-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mission-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.advantage-item:hover::before {
    transform: scaleY(1);
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 10px;
}

.advantage-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.advantage-item p {
    color: var(--text-light);
}

/* ===== CERTIFICATES ===== */
.certificates {
    padding: 80px 0;
    background: var(--bg-light);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.certificate-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.certificate-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.certificate-card i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.certificate-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.certificate-card p {
    color: var(--text-light);
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 150px;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 30px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
}

/* ===== PRODUCTS PAGE ===== */
.filter-section {
    padding: 40px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products-section {
    padding: 60px 0 100px;
    background: var(--bg-light);
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-full-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-full-image {
    height: 250px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.product-full-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-full-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-full-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
}

.product-features {
    margin: 15px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.product-features i {
    color: var(--success-color);
}

.product-full-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.info-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
}

.info-card i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* ===== PROFESSIONALS PAGE ===== */
.warning-notice {
    padding: 40px 0;
    background: #fff3cd;
}

.notice-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.notice-box i {
    font-size: 32px;
    color: var(--primary-color);
}

.notice-box h3 {
    margin-bottom: 10px;
}

.access-section {
    padding: 80px 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.access-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.access-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.access-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.professional-form .form-group {
    margin-bottom: 20px;
}

.professional-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.professional-form input,
.professional-form select,
.professional-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.professional-form input:focus,
.professional-form select:focus,
.professional-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.info-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-light);
}

.resources-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.resource-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--text-light);
}

.events-section {
    padding: 80px 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    align-items: center;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    flex: 0 0 100px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.event-date .day {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 18px;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.event-info p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.event-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.professional-contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-box {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-method i {
    font-size: 24px;
    color: var(--primary-color);
}

/* ===== PRESS PAGE ===== */
.featured-news {
    padding: 60px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.news-meta i {
    color: var(--primary-color);
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.featured-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-list-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.news-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-item-image {
    height: 200px;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-item-image img {
    transform: scale(1.1);
}

.news-item-content {
    padding: 25px;
}

.news-item-content .news-date {
    font-size: 13px;
}

.news-item-content .news-category {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.news-item-content h3 {
    font-size: 20px;
    margin: 15px 0;
}

.news-item-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    gap: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    padding: 10px 15px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.press-contact {
    padding: 80px 0;
}

.press-contact-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.press-contact-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.press-contact-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.press-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.press-contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
}

.press-contact-item i {
    font-size: 32px;
}

.press-contact-item h4 {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.press-contact-item p {
    font-size: 18px;
    font-weight: 600;
}

/* ===== CONTACTS PAGE ===== */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-hours {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 18px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.map-section {
    padding: 80px 0 0;
}

.map-section .section-title {
    margin-bottom: 40px;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.departments-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.department-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.department-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.department-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.department-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.department-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.department-contact i {
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
}

.social-section {
    padding: 80px 0;
}

.social-content {
    text-align: center;
}

.social-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.social-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
}

.social-link i {
    font-size: 24px;
    color: var(--primary-color);
}

.social-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .history-content,
    .featured-card,
    .access-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin: 0;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .products-full-grid,
    .news-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-form-wrapper,
    .access-form-wrapper {
        padding: 30px 20px;
    }

    .press-contact-content {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.breadcrumbs {
    padding: 20px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs a,
.breadcrumbs span {
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumbs span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Product Hero Section */
.product-hero {
    padding: 60px 0;
    background: white;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.product-hero-image {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.product-badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
}

.product-hero-image > img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
    background: white;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-hero-info {
    padding: 20px 0;
}

.product-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.product-rating .stars {
    display: flex;
    gap: 5px;
}

.product-rating .stars i {
    color: #ffc107;
    font-size: 20px;
}

.rating-text {
    color: var(--text-light);
    font-size: 15px;
}

.product-quick-info {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-info-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.quick-info-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.quick-info-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.quick-info-item strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.quick-info-item p {
    color: var(--text-light);
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 35px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-meta {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item strong {
    color: var(--text-dark);
}

.meta-item span {
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text-dark);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.tab-content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.tab-content .lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-banner {
    display: flex;
    gap: 20px;
    background: #e3f2fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #2196f3;
    margin-top: 40px;
}

.info-banner i {
    font-size: 32px;
    color: #2196f3;
    flex-shrink: 0;
}

.info-banner strong {
    display: block;
    color: #1976d2;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-banner p {
    color: #0d47a1;
    margin: 0;
}

/* Composition Tab */
.composition-table {
    margin: 30px 0;
}

.composition-table h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.composition-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.composition-table table tr {
    border-bottom: 1px solid var(--border-color);
}

.composition-table table td {
    padding: 15px;
    color: var(--text-light);
}

.composition-table table td:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.composition-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.composition-info .info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.composition-info .info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.composition-info .info-card i {
    color: var(--primary-color);
    font-size: 24px;
}

.composition-info .info-card p {
    color: var(--text-light);
    margin: 5px 0;
}

/* Indications Tab */
.indications-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.indication-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.indication-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.indication-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.indication-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.indication-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Application Tab */
.dosage-section {
    margin-top: 30px;
}

.dosage-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.dosage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.dosage-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.dosage-card p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin: 10px 0;
}

.dosage-timeline {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.dosage-timeline h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.dosage-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 100px;
    bottom: 40px;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    position: relative;
}

.timeline-dot {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-color);
    margin-top: 5px;
}

.timeline-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 5px 0;
}

.timeline-content strong {
    color: var(--primary-color);
    font-size: 18px;
}

.warning-box {
    display: flex;
    gap: 20px;
    background: #fff3cd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    margin-top: 40px;
}

.warning-box i {
    font-size: 32px;
    color: #ff9800;
    flex-shrink: 0;
}

.warning-box strong {
    display: block;
    color: #f57c00;
    margin-bottom: 5px;
    font-size: 18px;
}

.warning-box p {
    color: #e65100;
    margin: 0;
}

/* Contraindications Tab */
.contra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contra-card {
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-light);
    border-left: 5px solid;
}

.contra-card.danger {
    border-color: var(--danger-color);
    background: #ffebee;
}

.contra-card.warning {
    border-color: #ff9800;
    background: #fff3e0;
}

.contra-card.info {
    border-color: #2196f3;
    background: #e3f2fd;
}

.contra-card.success {
    border-color: var(--success-color);
    background: #e8f5e9;
}

.contra-card i {
    font-size: 36px;
    margin-bottom: 15px;
}

.contra-card.danger i {
    color: var(--danger-color);
}

.contra-card.warning i {
    color: #ff9800;
}

.contra-card.info i {
    color: #2196f3;
}

.contra-card.success i {
    color: var(--success-color);
}

.contra-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contra-card ul {
    list-style: none;
}

.contra-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.contra-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 1;
}

.contra-card.danger ul li::before {
    color: var(--danger-color);
}

.contra-card.warning ul li::before {
    color: #ff9800;
}

.contra-card.info ul li::before {
    color: #2196f3;
}

.contra-card.success ul li::before {
    color: var(--success-color);
}

/* Research Tab */
.research-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.research-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
}

.research-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.research-header i {
    font-size: 32px;
}

.research-header h3 {
    font-size: 24px;
    margin: 0;
}

.research-body {
    padding: 35px;
    background: white;
}

.research-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.research-list {
    list-style: none;
    margin: 25px 0;
}

.research-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-light);
    line-height: 1.8;
}

.research-list i {
    color: var(--success-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.research-source {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.research-source i {
    color: var(--primary-color);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.safety-item {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.safety-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.safety-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.safety-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 18px;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: white;
}

/* CTA Product */
.cta-product {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-product-text {
    color: white;
}

.cta-product-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-product-text p {
    font-size: 18px;
    opacity: 0.95;
}

.cta-product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive for Product Detail */
@media (max-width: 968px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-image {
        position: relative;
        top: 0;
    }

    .product-detail-title {
        font-size: 36px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .tab-content-wrapper {
        padding: 30px 20px;
    }

    .features-grid,
    .contra-grid,
    .research-stats {
        grid-template-columns: 1fr;
    }

    .dosage-timeline::before {
        left: 30px;
    }

    .cta-product-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-product-actions {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 1 auto;
    }

    .indication-item,
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .product-detail-title {
        font-size: 28px;
    }
}

/* ===== ADDITIONAL PRODUCT DETAIL STYLES ===== */
.awards-banner {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #ffb300;
}

.awards-banner i {
    font-size: 32px;
    color: #ff9800;
    flex-shrink: 0;
}

.awards-banner strong {
    display: block;
    color: #e65100;
    margin-bottom: 5px;
    font-size: 18px;
}

.awards-banner p {
    color: #ef6c00;
    margin: 0;
}

.indication-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.indication-tags .tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.indication-examples {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.indication-examples h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.example-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.example-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.example-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.example-card p {
    color: var(--text-light);
    font-size: 14px;
}

.mechanism-section {
    margin: 40px 0;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 15px;
}

.mechanism-section h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mechanism-section i {
    color: var(--primary-color);
    font-size: 28px;
}

.mechanism-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.composition-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 40px;
    border-radius: 15px;
    color: white;
    margin-bottom: 40px;
}

.composition-main {
    text-align: center;
}

.composition-main i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.composition-main h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.active-substance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.substance-name {
    font-size: 32px;
    font-weight: 700;
}

.substance-amount {
    font-size: 24px;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 25px;
}

.application-visual {
    margin: 40px 0;
}

.application-visual h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.application-visual i {
    color: var(--primary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.dosage-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.dosage-card-alt {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.dosage-card-alt:hover {
    background: white;
    box-shadow: var(--shadow);
}

.dosage-card-alt i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dosage-card-alt h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.dosage-card-alt p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 5px 0;
}

.dosage-card-alt strong {
    color: var(--primary-color);
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}

.safety-section {
    margin-top: 40px;
    padding: 35px;
    background: #e8f5e9;
    border-radius: 15px;
    border-left: 5px solid var(--success-color);
}

.safety-section h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.safety-section i {
    color: var(--success-color);
    font-size: 28px;
}

.safety-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.advantages-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.advantage-feature {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.advantage-feature h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.advantage-feature p {
    color: var(--text-light);
    line-height: 1.8;
}

.comparison-section {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.comparison-section h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
}

.comparison-row.header {
    background: var(--primary-color);
}

.comparison-row.header .comparison-cell {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.comparison-cell {
    background: white;
    padding: 20px;
    text-align: center;
    color: var(--text-dark);
}

.comparison-cell.success {
    background: #e8f5e9;
    color: var(--success-color);
    font-weight: 600;
}

/* Responsive for Additional Elements */
@media (max-width: 968px) {
    .steps-grid,
    .examples-grid,
    .advantages-showcase {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .active-substance {
        flex-direction: column;
    }

    .awards-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .dosage-info-grid {
        grid-template-columns: 1fr;
    }

    .substance-name {
        font-size: 24px;
    }

    .substance-amount {
        font-size: 18px;
    }
}
