/* ===========================
   BATERO GOLD CORP - ESTILOS
   Tema: Verde y Blanco
   =========================== */

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --light-green: #4a7c2c;
    --accent-green: #6ba13d;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-medium: #cccccc;
    --gray-dark: #666666;
    --text-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER STYLES
   =========================== */

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 80px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-green);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-green);
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    z-index: 9999;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s linear 0.3s;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
}

/* Área extendida para mantener el hover */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-menu a:hover {
    background-color: var(--gray-light);
    color: var(--accent-green);
    border-left-color: var(--accent-green);
}

.dropdown-menu a::after {
    display: none !important;
}

/* Responsive dropdown for mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transition: none;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
    }
    
    .main-nav.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown::after {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: 0.3s;
}

/* ===========================
   HERO BANNER SECTION
   =========================== */

.hero-banner {
    position: relative;
    height: 500px;
    /* Gradiente verde como placeholder - se reemplazará con imagen */
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 50%, #6ba13d 100%);
    background-image: url('../fotos/homeDos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay oscuro sobre la imagen para mejor legibilidad del texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: var(--accent-green);
}

/* ===========================
   PAGE HERO BANNER (páginas internas)
   =========================== */

.page-hero-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 50%, #6ba13d 100%);
    background-image: url('../fotos/home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: relative;
    z-index: 2;
    font-size: 13px;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-green);
}

.breadcrumb span {
    color: var(--white);
    margin: 0 10px;
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 500;
}

/* ===========================
   PAGE HEADER SECTION
   =========================== */

.page-header-section {
    text-align: center;
    padding: 50px 0 30px;
}

.page-main-title {
    color: var(--black);
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   SHAREHOLDER CONTENT
   =========================== */

.shareholder-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title-underline {
    color: var(--text-color);
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-medium);
}

.meeting-announcement {
    background-color: #e8f4f8;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.meeting-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

.meeting-text strong {
    color: var(--primary-green);
}

/* Document Link Button */
.document-link-section {
    margin-top: 30px;
}

.document-link-button {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    border: 2px solid var(--accent-green);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.document-link-button:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.doc-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.doc-text {
    flex: 1;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.document-link-button:hover .doc-text {
    color: var(--white);
}

.doc-text strong {
    color: var(--primary-green);
    font-size: 16px;
}

.document-link-button:hover .doc-text strong {
    color: var(--white);
}

.arrow-icon {
    font-size: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.document-link-button:hover .arrow-icon {
    color: var(--white);
    transform: translateX(5px);
}

/* Additional Info Section */
.additional-info {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.additional-info h3 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.additional-info ul {
    list-style: none;
    padding: 0;
}

.additional-info li {
    color: var(--text-color);
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.additional-info li:last-child {
    border-bottom: none;
}

.additional-info li strong {
    color: var(--primary-green);
}

/* ===========================
   PRESS RELEASE CONTENT
   =========================== */

.press-release-content {
    max-width: 900px;
    margin: 0 auto;
}

.press-release-body {
    background-color: var(--white);
    padding: 40px;
    line-height: 1.8;
}

.press-date {
    color: var(--primary-green);
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
}

.press-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.press-text a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-text a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.press-signature {
    background-color: var(--gray-light);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-green);
}

.press-signature p {
    color: var(--text-color);
    margin: 5px 0;
}

.press-qualified-person,
.press-about,
.press-contact,
.press-forward-looking {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--gray-light);
    border-radius: 5px;
}

.press-qualified-person h3,
.press-about h3,
.press-contact h3,
.press-forward-looking h3 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.press-qualified-person p,
.press-about p,
.press-contact p,
.press-forward-looking p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
}

.press-contact a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-contact a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.press-disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: #fffbea;
    border: 1px solid #f0e5c0;
    border-radius: 5px;
}

.press-disclaimer p {
    color: var(--gray-dark);
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* Highlights List */
.highlights-list {
    background-color: var(--gray-light);
    padding: 25px 35px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--accent-green);
}

.highlights-list ul {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.9;
}

.highlights-list li {
    margin-bottom: 12px;
}

.highlights-list ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

/* Project Map Image */
.project-map {
    margin-top: 30px;
    text-align: center;
}

.map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.map-caption {
    color: var(--gray-dark);
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

/* Documents List Section */
.documents-list-section {
    margin-top: 30px;
}

.documents-list-section h3 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.documents-links-list {
    list-style: none;
    padding: 0;
}

.documents-links-list li {
    margin-bottom: 15px;
}

.doc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    text-decoration: none;
    color: #0066cc;
    transition: all 0.3s ease;
}

.doc-link:hover {
    background-color: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
    transform: translateX(5px);
}

.doc-icon-small {
    font-size: 20px;
    flex-shrink: 0;
}

/* ===========================
   CORPORATE SECTIONS
   =========================== */

.corporate-overview-section {
    padding: 40px 0;
}

.corporate-main-title {
    color: var(--primary-green);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.corporate-subtitle {
    color: var(--text-color);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.corporate-text-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.corporate-text-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.section-title-green {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-green);
}

/* Corporate Directory */
.corporate-directory-section {
    margin-bottom: 60px;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.directory-card {
    background-color: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.directory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.directory-card h3 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.directory-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

.directory-card strong {
    color: var(--primary-green);
}

/* Management Section */
.management-section {
    margin-bottom: 40px;
}

.team-member {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-member h3 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member .position {
    color: var(--accent-green);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.team-member p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Corporate Governance Section */
.corporate-governance-section {
    margin-bottom: 60px;
}

.governance-content {
    max-width: 900px;
    margin: 0 auto;
}

.governance-content .section-description {
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.governance-documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.governance-doc-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background-color: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.governance-doc-link:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.governance-doc-link .pdf-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.governance-doc-link .doc-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.governance-doc-link:hover .doc-title {
    color: var(--white);
}

/* Social and Environmental Section */
.social-environmental-section {
    margin-bottom: 60px;
}

.social-env-content {
    max-width: 1000px;
    margin: 0 auto;
}

.social-env-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.social-env-content .text-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-env-content .text-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.subsection-title {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-green);
}

.image-with-caption {
    margin: 30px 0;
    text-align: center;
}

.social-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.image-caption {
    color: var(--gray-dark);
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.6;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.image-gallery .image-with-caption {
    margin: 0;
}

.image-gallery .social-image {
    max-width: 100%;
}

/* Shareholder Materials Section */
.shareholder-materials-section {
    margin-bottom: 60px;
}

.materials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.meeting-announcement-box {
    background-color: #e8f4f8;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-green);
}

.meeting-announcement-box h2 {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.meeting-announcement-box p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

.meeting-announcement-box strong {
    color: var(--primary-green);
}

/* News Link Section */
.news-link-section {
    margin-bottom: 40px;
}

.news-link-section h3 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.news-card-link {
    text-decoration: none;
    display: block;
}

.news-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.news-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.news-content .read-more {
    color: var(--accent-green);
    font-weight: 500;
    font-size: 14px;
}

.news-card:hover .read-more {
    color: var(--primary-green);
}

/* Previous Meetings Section */
.previous-meetings-section {
    margin-top: 50px;
}

.previous-meetings-section h3 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.previous-meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.previous-meeting-card {
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.previous-meeting-card:hover {
    background-color: var(--accent-green);
    transform: translateX(5px);
}

.previous-meeting-card h4 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.previous-meeting-card:hover h4 {
    color: var(--white);
}

.previous-meeting-card p {
    color: var(--text-color);
    font-size: 14px;
}

.previous-meeting-card:hover p {
    color: var(--white);
}

/* Quinchia Project Section */
.quinchia-project-section {
    margin-bottom: 60px;
}

.project-main-title {
    color: var(--primary-green);
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-green);
}

.project-pages-nav {
    background-color: var(--gray-light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.project-pages-nav .nav-label {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
}

.project-page-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.project-page-link:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

.project-page-link.active {
    background-color: var(--primary-green);
    color: var(--white);
}

.project-content {
    max-width: 1100px;
    margin: 0 auto;
}

.project-section-title {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.project-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* Data Tables */
.data-table-container {
    margin: 30px 0;
    overflow-x: auto;
}

.data-table-container h4 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.table-subtitle {
    color: var(--gray-dark);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.data-table thead {
    background-color: var(--primary-green);
}

.data-table thead th {
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--gray-medium);
    transition: background-color 0.3s ease;
}

.data-table tbody tr:hover {
    background-color: var(--gray-light);
}

.data-table tbody td {
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 14px;
}

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

/* Info Box */
.info-box {
    background-color: #e8f4f8;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    margin: 30px 0;
}

.info-box p {
    margin: 0;
}

/* Project Image Container */
.project-image-container {
    margin: 40px 0;
    text-align: center;
}

.project-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

/* Highlight Box */
.highlight-box {
    background-color: #fff8dc;
    border-left: 4px solid var(--accent-green);
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.highlight-box p {
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

/* Financials Section */
.financials-section {
    margin-bottom: 60px;
}

.financial-reports-list {
    max-width: 1000px;
    margin: 0 auto;
}

.financial-report-item {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-report-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.financial-report-item h3 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.financial-report-item p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.financial-report-item .read-more-link {
    display: inline-block;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card-main {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-card-main h3 {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.contact-card-main h4 {
    color: var(--accent-green);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-methods {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-light);
}

.contact-methods p {
    margin-bottom: 12px;
}

.contact-methods strong {
    color: var(--primary-green);
}

.contact-methods a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-methods a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Stock Information Section */
.stock-info-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stock-info-section h3 {
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.stock-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stock-label {
    display: block;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.stock-value {
    display: block;
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 700;
}

/* Individual Financial Report Page */
.financial-report-section {
    margin-bottom: 60px;
}

.report-content {
    max-width: 900px;
    margin: 0 auto;
}

.report-title {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
}

.report-description {
    background-color: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-green);
}

.report-description p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.back-link-section {
    margin-top: 30px;
    text-align: center;
}

.back-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.multiple-documents-section h3 {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.multiple-documents-section .document-link-section {
    margin-bottom: 20px;
}

/* ===========================
   TAGLINE SECTION
   =========================== */

.tagline-section {
    background-color: var(--white);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-medium);
}

.tagline {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--accent-green);
    display: inline-block;
}

/* ===========================
   MAIN CONTENT
   =========================== */

.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.news-section {
    margin-bottom: 40px;
}

.news-article {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-article h2 {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-meta {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.article-meta strong {
    font-weight: 600;
}

.document-list {
    list-style: none;
    margin-top: 15px;
}

.document-list li {
    margin-bottom: 8px;
}

.document-list a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.document-list a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.read-more-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.disclaimer {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: var(--gray-dark);
    font-style: italic;
}

/* ===========================
   DOCUMENTS PAGE
   =========================== */

.documents-section h1 {
    color: var(--primary-green);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-description {
    color: var(--gray-dark);
    font-size: 16px;
    margin-bottom: 40px;
}

.document-category {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.document-category h2 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-green);
}

.document-list-page {
    list-style: none;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: var(--gray-light);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.document-item:hover {
    background-color: #e8f5e3;
}

.document-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.document-icon {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.document-name {
    flex: 1;
    color: var(--text-color);
    font-weight: 500;
}

.document-size {
    color: var(--gray-dark);
    font-size: 14px;
    margin-right: 20px;
}

.download-btn {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: var(--primary-green);
}

.no-documents {
    color: var(--gray-dark);
    font-style: italic;
}

/* ===========================
   FOOTER STYLES
   =========================== */

.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 30px 0;
    margin-top: 60px;
}

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

.footer-left p,
.footer-right p {
    font-size: 14px;
    color: var(--white);
}

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

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-banner {
        height: 400px;
    }

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

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

    .tagline {
        font-size: 24px;
    }

    .page-hero-banner {
        height: 300px;
    }

    .page-main-title {
        font-size: 32px;
    }

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

    .meeting-announcement {
        padding: 25px;
    }

    .meeting-text {
        font-size: 15px;
        text-align: left;
    }

    .document-link-button {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .press-release-body {
        padding: 25px;
    }

    .press-text {
        font-size: 15px;
        text-align: left;
    }

    .press-signature,
    .press-qualified-person,
    .press-about,
    .press-contact,
    .press-forward-looking {
        padding: 20px;
    }

    .corporate-main-title {
        font-size: 28px;
    }

    .corporate-subtitle {
        font-size: 22px;
    }

    .corporate-text-content p {
        text-align: left;
    }

    .directory-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 20px;
    }

    .governance-doc-link {
        padding: 15px 20px;
    }

    .governance-doc-link:hover {
        transform: translateX(5px);
    }

    .social-env-content p {
        text-align: left;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .meeting-announcement-box {
        padding: 25px;
    }

    .meeting-announcement-box p {
        text-align: left;
    }

    .news-card {
        flex-direction: column;
        text-align: center;
    }

    .previous-meetings-grid {
        grid-template-columns: 1fr;
    }

    .financial-report-item {
        padding: 20px;
    }

    .financial-report-item h3 {
        font-size: 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .stock-grid {
        grid-template-columns: 1fr;
    }

    .project-main-title {
        font-size: 28px;
    }

    .project-pages-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-page-link {
        width: 100%;
        text-align: center;
    }

    .project-content p {
        text-align: left;
    }

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

    .data-table thead th,
    .data-table tbody td {
        padding: 8px 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .news-article {
        padding: 20px;
    }

    .news-article h2 {
        font-size: 20px;
    }

    .document-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .document-info {
        width: 100%;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .hero-banner {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .tagline {
        font-size: 20px;
    }

    .documents-section h1 {
        font-size: 26px;
    }
}

