/* Page Header Section */
.pg-header {
    background-image: url('images/Slider-Investor-Relation.jpg');
}

/* Add a wrapper for the entire content area */
.ir-section {
    background-color: #F5F5F5;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 100%;  /* Add this */
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0 auto;  /* Add this */
}

.content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Corporate Navigation */
.ir-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #ccc;
    margin: 0 auto;
}

.ir-nav a {
    text-decoration: none;
    color: #666;
    padding-bottom: 1rem;
    position: relative;
    cursor: pointer;
}

.ir-nav a.active {
    color: #00A19C;
}

.ir-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00A19C;
}

/* Board Navigation */
.ir-sub-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    margin: 0 auto;
}

.ir-sub-nav button {
    padding: 0.75rem 2rem;
    border: 1px solid #00A19C;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ir-sub-nav button.active {
    background: #00A19C;
    color: white;
}

/* Board Section */
.corp-info-container {
    width: 100%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Board Title */
.corp-info-title {
    background: #00BFB3;
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    text-transform: uppercase;
}

/* Board Content */
.corp-info-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    background: transparent;
    box-shadow: none;
}

/* Board Members List */
.corp-info-members {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: white;
    border-radius: 0;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 15px 0 15px 0;
    border-top: none;
    min-height: 600px;
}

/* Adjust spacing between board members */
.corp-info-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #F5F5F5;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 8px 20px;
    border: 1px solid #E5E5E5;
    gap: 1rem;
}

/* Keep first and last member margins */
.corp-info-member:last-child {
    margin-bottom: 8px;
}

/* Wrap the title and list together */
.corp-info-list {
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.corp-info-member.active {
    background: #15234A;
    color: white;
    border-radius: 4px;
    border: 1px solid #15234A;
}

.member-info h3 {
    font-size: 1rem;
    color: #FF6B6B;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.member-info p {
    font-size: 0.8rem;
    color: #FF6B6B;
    opacity: 0.9;
}

.corp-info-member.active .member-info h3,
.corp-info-member.active .member-info p {
    color: white;
}

/* Arrow styling */
.corp-info-member .arrow {
    color: #FF6B6B;
    font-size: 1.2rem;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.corp-info-member.active .arrow {
    color: white;
}

.corp-info-member:hover .arrow {
    transform: translateX(5px);
}

/* Member Details Section */
.member-details {
    padding: 2rem 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.member-details img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
    display: block;
}

/* Content Box Styling */
.details-content {
    background: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Name and Title Container */
.name-container {
    background: white;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 500px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

/* Vertical Line */
.name-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: #00BFB3;
}

/* Name Styling */
.details-content h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Title Styling */
.details-content h3 {
    color: #666;
    font-size: 1rem;
    font-weight: normal;
}

/* Personal Info Container - Position at bottom */
.personal-info {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding-bottom: 2rem;
    margin: 2rem auto 0;
}

/* Keep the line after personal info */
.personal-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
}

/* Info Row Styling */
.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #333;
}

.info-row:last-child {
    margin-bottom: 1.5rem;
}

.info-row .label {
    width: 90px;
    color: #333;
}

.info-row .value {
    color: #333;
}

/* Career Details Section */
.member-info-container {
    background: white;
    padding: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.member-info-section {
    margin-bottom: 2.5rem;
}

.member-info-section:last-child {
    margin-bottom: 0;
}

.member-info-section h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.member-info-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.experience-content p {
    margin-bottom: 1.5rem;
}

.experience-content p:last-child {
    margin-bottom: 0;
}

/* Tab Content Styling */
.tab-content {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Governance Grid */
.governance-grid, .policy-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: #F5F5F5;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.governance-grid a, .policy-grid a {
    text-decoration: none;
    display: flex;
    flex-basis: calc(33.33% - 1.35rem);
    max-width: calc(33.33% - 1.35rem);
    width: 100%;  /* Add this */
    box-sizing: border-box;
}

/* Governance Item */
.governance-item, .policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    position: relative;
    border: 1px solid #E5E5E5;
    justify-content: space-between;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Add hover overlay */
.governance-item::after, .policy-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 75, 43, 0) 0%, rgba(255, 75, 43, 0) 45%, rgb(255, 75, 43) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

/* Default top line style for all items */
.governance-item::before, .policy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #FF4B2B;  /* Default orange */
    transition: background-color 0.3s ease;  /* Add transition */
}

/* Show overlay on hover */
.governance-item:hover::after, .policy-item:hover::after {
    opacity: 1;
}

/* Icon Container hover effect */
.governance-item:hover .icon-container, .policy-item:hover .icon-container {
    background: #FF4B2B;  /* Change to orange on hover */
}

/* Change top line to blue when hovering over icon container */
.governance-item:hover::before, .policy-item:hover::before {
    background-color: #15234A;  /* Change to blue on hover */
}

/* Keep other icon container styles */
.icon-container {
    width: 100px;
    height: 100px;
    margin: 1rem auto 1.5rem;
    background: #15234A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color 0.3s ease;
}

/* Hover effect for ALL icon containers */
.governance-item:hover .icon-container {
    background: #FF4B2B;  /* Change to orange on hover */
}

/* Default icon color (white) */
.governance-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.governance-item h3, .policy-item h3 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    position: relative;
}

.governance-item:hover h3, .policy-item:hover h3 {
    color: #FF4B2B;
}

/* Governance Image */
.governance-image, .policy-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.governance-image img, .policy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

/* Update Meeting Section Styles */
/* Meeting Info Container */
.meeting-info-container {
    flex: 0 0 350px;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 2rem;
}

.meeting-info {
    margin-bottom: 2rem;
}

.meeting-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meeting-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.meeting-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #333;
    font-size: 0.9rem;
    position: relative;
}

/* Update the detail-item img style for Date-icon */
.detail-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.detail-item span {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.2;
    display: flex;
    margin: auto 0;
}

.detail-item span::before {
    content: ':';
    margin-right: 0.5rem;
}

/* Update meeting content layout */
.meeting-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Documents Container */
.documents-container {
    flex: 1;
    padding: 2rem;
    background: #f5f5f5;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #FF4B2B;
}

.document-item:last-child {
    border-bottom: none;
}

.document-item span {
    color: #333;
    font-size: 0.95rem;
    padding-right: 1rem;
}

.view-more-container {
    background: white;
    border-radius: 20px;
    padding: 0.25rem;
    flex-shrink: 0;
    border: 2px solid #FF4B2B;
    transition: all 0.3s ease;
}

.view-more {
    display: inline-block;
    color: #FF4B2B;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-more-container:hover {
    background: #FF4B2B;
}

.view-more-container:hover .view-more {
    color: white;
}

/* Annual Report Styles */
.report-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.report-item {
    position: relative;
    width: 300px;
    min-width: unset;
    max-width: 100%;
}

/* Report cover styling with shadow */
.report-cover {
    position: relative;
    width: 100%;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.15));
}

.report-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Company name and title styling */
.report-info {
    text-align: left;
    margin-top: 2rem;
    padding-left: 1rem;
}

.report-info h3 {
    color: #FF4B2B;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.report-info h4 {
    display: flex;
    flex-direction: column;
    color: #15234A;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
}

/* Add span to handle the year separately */
.report-info h4 span {
    display: block;
    margin-top: 0.25rem;
}

/* Updated Announcements Section Styles */
.announcements-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.announcement-content, .ir-contact-content {
    display: flex;
    min-height: 400px;
    background: white;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.announcement-left {
    flex: 0 0 35%;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.click-container {
    width: 100%;
    height: 100%;
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.click-container h2, .click-container h2 a {
    color: #FF4B2B;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.click-container p {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.5;
}

.announcement-right {
    flex: 0 0 65%;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.announcement-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Announcement Tabs Styles */
.announcement-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.announcement-tab {
    padding: 0.75rem 2rem;
    border: 1px solid #00BFB3;
    background: transparent;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.announcement-tab.active {
    background: #00BFB3;
    color: white;
    border-color: #00BFB3;
}

.announcement-tab:hover {
    background: #00BFB3;
    color: white;
}

/* Tab Content Styles */
.announcement-tab-content {
    margin-top: 2rem;
}

.announcement-tab-pane {
    display: none;
}

.announcement-tab-pane.active {
    display: block;
}

/* Add styles for IR Contact specific content */
.click-container .contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.click-container a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.click-container a:hover {
    color: #FF4B2B;
}

/* Media Release Styles */
.media-container {
    margin-top: 2rem;
}

.featured-news {
    background: linear-gradient(rgba(0, 161, 156, 0.2),rgba(0, 161, 156, 0.05));
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 8px 8px 3px rgba(0, 0, 0, 0.25), 4px 4px 3px rgba(132, 151, 211, 0.5);
}

.featured-news h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
    max-width: 90%;
}

.featured-news p {
    color: #333;
    margin-bottom: 1.5rem;
}

.featured-news .subtitle {
    font-size: 0.9rem;
    font-style: italic;
}

.read-more-btn {
    background: #FF4B2B;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    background: #e63e1f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-news {
        padding: 2rem;
    }

    .news-meta {
        padding-bottom: 4rem;
    }
}

/* News Grid Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-item {
    background: rgba(0, 161, 156, 0.01);
    padding: 1.5rem;
    position: relative;
    box-shadow: 8px 8px 3px rgba(0, 0, 0, 0.25), 4px 4px 3px rgba(132, 151, 211, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #00BFB3;
    border-radius: 8px;
}

.news-item:hover,
.news-item:active,
.news-item.active {
    border-color: #FF4B2B;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-item h3 {
    margin-bottom: 1rem;
}

.news-item h3 a {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: bold;
    text-decoration: 1px underline transparent;
    transition: text-decoration-color 0.3s ease;
}

.news-item h3 a:hover {
    text-decoration-color: #333;
}

.news-item p {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-date {
    color: #333;
    font-size: 0.85rem;
}

/* Arrow Circle Styles */
.arrow-circle {
    width: 40px;
    height: 40px;
    background-color: #003366; /* Dark blue color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-circle i {
    color: white;
    font-size: 1.5rem;
    display: inline-block;
    transform: rotate(45deg); /* This makes the arrow slanted */
    transition: transform 0.3s ease;
}

/* Hover Effects */
.news-item:hover .arrow-circle {
    background: #FF4B2B;
    border-color: #FF4B2B;
}

.news-item:hover i,
.news-item:active i,
.news-item.active i {
    transform: rotate(-45deg); /* Rotates while maintaining slant */
}

.media-news {
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
}

.media-news p, .about-dxn p {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.title-bar {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(rgba(0, 161, 156, 0.25),rgba(0, 161, 156, 0.1));
}

.title-bar h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.title-bar p {
    margin-bottom: 0;
}

.about-dxn hr {
    margin-bottom: 1.5rem;
    border: 1px solid #00BFB3;
}

.about-dxn h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.back-btn {
    background: #FF4B2B;
    color: white;
    padding: 0.5rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-btn:hover {
    background: #e63e1f;
}

/* Add these media queries at the end of the file */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {
    .content-wrapper {
        padding: 3rem;
    }

    .ir-nav {
        flex-wrap: wrap;
    }
    
    .corp-info-content {
        grid-template-columns: 380px 1fr;
        gap: 1.5rem;
    }

    .report-grid {
        gap: 2rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
    .content-wrapper {
        padding: 2rem;
    }

    .ir-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ir-nav a {
        font-size: 0.9rem;
    }

    .corp-info-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .corp-info-members {
        min-height: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .corp-info-member {
        flex: 1;
        flex-basis: calc(50% - 42px);
    }

    .corp-info-member:nth-child(2n+1) {
        margin-right: 10px;
    }

    .corp-info-member:nth-child(2n) {
        margin-left: 10px;
    }

    .member-details {
        padding: 0;
    }

    .member-info-container {
        padding: 2rem;
    }

    .governance-grid, .policy-grid {
        padding: 1rem;
    }

    .governance-grid a, .policy-grid a {
        flex-basis: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .meeting-info-container {
        flex: 0 0 250px;
    }

    .announcement-left, .announcement-right {
        flex: 0 0 50%;
    }

    .featured-news {
        margin-bottom: 2rem;
    }

    .news-grid {
        gap: 1.5rem;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem;
    }

    .ir-nav, .ir-sub-nav {
        align-items: center;
        gap: 0.5rem;
    }

    .ir-nav a, .ir-sub-nav button {
        width: 100%;
        flex-basis: calc(50% - 0.25rem);
        text-align: center;
        padding: 0.75rem;
    }

    .governance-grid, .policy-grid {
        padding: 1rem;
        gap: 1rem;
    }

    .icon-container {
        width: 80px;
        height: 80px;
    }

    .name-container {
        padding: 1rem;
    }

    .personal-info {
        padding: 0 1rem;
    }

    .meeting-row {
        flex-direction: column;
    }

    .report-grid {
        gap: 2rem;
        padding: 1rem;
    }

    .announcement-content, .ir-contact-content {
        min-height: 300px;
    }

    .click-container .contact-email {
        justify-content: center;
    }

    .click-container {
        text-align: center;
        padding: 2rem;
    }

    .click-container h2, .click-container h2 a {
        font-size: 1.8rem;
    }

    .click-container p {
        font-size: 1.1rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
    .content-wrapper {
        padding: 1rem;
    }

    .corp-info-member {
        padding: 0.5rem 1rem;
        margin: 4px 10px;
    }

    .corp-info-member:nth-child(2n+1) {
        margin-right: 5px;
    }

    .corp-info-member:nth-child(2n) {
        margin-left: 5px;
    }

    .member-info h3 {
        font-size: 0.9rem;
    }

    .member-info p {
        font-size: 0.75rem;
    }

    .details-content h2 {
        font-size: 1.3rem;
    }

    .details-content h3 {
        font-size: 0.9rem;
    }

    .info-row {
        font-size: 0.85rem;
    }

    .member-info-container {
        padding: 1.5rem;
    }

    .member-info-section h4 {
        font-size: 1rem;
    }

    .member-info-section p {
        font-size: 0.85rem;
    }

    .governance-item, .policy-item {
        padding: 1rem;
    }

    .icon-container {
        margin-bottom: 1rem;
    }

    .governance-item h3, .policy-item h3 {
        margin-bottom: 1rem;
    }

    .governance-image, .policy-image {
        height: auto;
    }

    .click-container {
        padding: 1rem;
    }

    .click-container h2, .click-container h2 a {
        font-size: 1.5rem;
    }

    .click-container p {
        font-size: 1rem;
    }

    .featured-news {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .featured-news h2 {
        font-size: 1.1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}