/* ================== GLOBAL ================== */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* ================== CONTAINER ================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== HEADER ================== */
header {
    background: #fff;
    border-bottom: 18px solid #f2c200;
    position: relative;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header-flex .menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-flex .menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-flex .menu ul li a:hover,
.header-flex .menu ul li a.active {
    color: #f2c200;
}

/* ================== MOBILE MENU ================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================== HERO ================== */
.hero {
    position: relative;
    height: 83vh;
    background-image: url('images/P70412-140953.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 40%,
        rgba(255,255,255,0.8) 75%,
        #ffffff 100%
    );
}

.hero-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 1200px;
    text-align: left;
}

/* ================== HERO TITLE & SUBTITLE ================== */
.hero-title {
    position: relative;
    display: inline-block;
    background-color: rgba(242, 194, 0, 0.75);
    padding: 15px 30px;
    margin-bottom: 15px;
    max-width: 100%;
}

.hero-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100vw;
    background-color: rgba(242, 194, 0, 0.75);
}

.hero-title h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
}

.hero-subtitle {
    position: relative;
    display: inline-block;
    background-color: rgba(242, 194, 0, 0.75);
    padding: 15px 30px;
    margin-bottom: 15px;
    max-width: 100%;
}

.hero-subtitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100vw;
    background-color: rgba(242, 194, 0, 0.75);
}

.hero-subtitle p {
    margin: 0;
    font-size: 24px;
    line-height: 1.6;
    color: #000;
}

/* ================== ADAPTIVE / MOBILE ================== */

/* Tablets and below (968px) */
@media (max-width: 968px) {
    /* Hero section */
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        padding: 12px 20px;
        display: block;
    }

    .hero-title::after {
        display: none;
    }

    .hero-title h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        padding: 12px 20px;
        display: block;
    }

    .hero-subtitle::after {
        display: none;
    }

    .hero-subtitle p {
        font-size: 18px;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        padding: 10px 15px;
    }

    .hero-title h1 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        padding: 10px 15px;
    }

    .hero-subtitle p {
        font-size: 16px;
        line-height: 1.5;
    }
}
/* ================== CONTENT ================== */
.content {
    padding: 80px 20px;
}

.content-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.content-inner h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.yellow-line {
    width: 100%;
    height: 6px;
    background-color: #f2c200;
    margin-bottom: 25px;
}

.content-inner p {
    margin-bottom: 20px;
}

/* ================== INTRO BOX ================== */
.intro-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #f2c200;
    padding: 25px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.intro-box p {
    font-size: 20px;
    font-weight: 500;
    color: #2c5f7d;
    margin: 0;
    line-height: 1.6;
}

/* ================== MAIN DESCRIPTION ================== */
.main-description {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ================== FEATURES GRID ================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f2c200 0%, #2c5f7d 100%);
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
    width: 8px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0 0 10px 0;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ================== HIGHLIGHT SECTION ================== */
.highlight-section {
    background: linear-gradient(135deg, #fff8e6 0%, #fff 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #f2c200;
    margin: 30px 0;
}

.highlight-section p {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* ================== VALUES SECTION ================== */
.values-section {
    margin: 50px 0 40px 0;
}

.values-section h3 {
    font-size: 28px;
    color: #1a3a4a;
    margin-bottom: 30px;
    text-align: center;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.value-tag {
    padding: 12px 24px;
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    color: white;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.value-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(44, 95, 125, 0.3);
}

/* ================== CLOSING TEXT ================== */
.closing-text {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-top: 30px;
}

/* ================== HERO CONTACTS (без картинки) ================== */
.hero-contacts {
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-contacts h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ================== CONTACTS SECTION ================== */
.contacts-section {
    padding: 60px 20px;
}

.contacts-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contacts-text {
    flex: 1;
    min-width: 300px;
}

.contacts-text h2 {
    font-size: 28px;
    color: #1a3a4a;
    margin-bottom: 20px;
    margin-top: 30px;
}

.contacts-text h2:first-child {
    margin-top: 0;
}

.contacts-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0;
    color: #333;
}

.contacts-text strong {
    color: #2c5f7d;
    font-weight: 600;
}

.contacts-map {
    flex: 1;
    min-width: 300px;
}

.contacts-map iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ================== HERO REPORTING ================== */
.hero-reporting {
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-reporting h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ================== REPORTING SECTION ================== */
.reporting-section {
    padding: 60px 20px;
}

.reporting-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #f2c200;
    padding: 25px 30px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.reporting-intro p {
    font-size: 18px;
    color: #2c5f7d;
    margin: 0;
    line-height: 1.6;
}

.reporting-category {
    margin-bottom: 60px;
}

.reporting-category h2 {
    font-size: 28px;
    color: #1a3a4a;
    margin-bottom: 10px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.report-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f2c200 0%, #2c5f7d 100%);
    border-radius: 12px 0 0 12px;
    transition: width 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.report-card:hover::before {
    width: 8px;
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.report-info {
    flex: 1;
    margin-bottom: 20px;
}

.report-info h3 {
    font-size: 20px;
    color: #1a3a4a;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.report-date {
    font-size: 14px;
    color: #999;
    margin: 0 0 10px 0;
}

.report-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.report-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f2c200 0%, #f4c934 100%);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.report-download:hover {
    background: linear-gradient(135deg, #f4c934 0%, #f2c200 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(242, 194, 0, 0.3);
}

.report-download svg {
    width: 20px;
    height: 20px;
}

/* ================== NO REPORTS MESSAGE ================== */
.no-reports {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #f2c200;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.no-reports p {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.report-size {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

/* ================== MULTIPLE FILES DOWNLOAD ================== */
.report-download-multiple {
    position: relative;
}

.report-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f2c200 0%, #f4c934 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    width: 100%;
}

.report-download-btn:hover {
    background: linear-gradient(135deg, #f4c934 0%, #f2c200 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(242, 194, 0, 0.3);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.report-download-btn:hover .arrow-icon {
    transform: translateY(2px);
}

/* ================== FILE MENU ================== */
.file-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
}

.file-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.file-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.file-menu-item:last-child {
    border-bottom: none;
}

.file-menu-item:hover {
    background: #f8f9fa;
}

.file-menu-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.file-menu-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.file-menu-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a3a4a;
}

.file-menu-details {
    font-size: 12px;
    color: #888;
}

/* ================== HERO INVESTORS ================== */
.hero-investors {
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-investors h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ================== INVESTORS SECTION ================== */
.investors-section {
    padding: 60px 20px;
}

.investors-intro {
    margin-bottom: 60px;
}

.investors-intro h2 {
    font-size: 32px;
    color: #1a3a4a;
    margin-bottom: 20px;
}

.investors-intro p {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ================== BENEFITS GRID ================== */
.investors-benefits {
    margin-bottom: 60px;
}

.investors-benefits h2 {
    font-size: 28px;
    color: #1a3a4a;
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 20px;
    color: #1a3a4a;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ================== INVESTORS DOCUMENTS ================== */
.investors-documents {
    margin-bottom: 60px;
}

.investors-documents h2 {
    font-size: 28px;
    color: #1a3a4a;
    margin-bottom: 10px;
}

.no-documents {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #f2c200;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.no-documents p {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.document-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f2c200 0%, #2c5f7d 100%);
    border-radius: 12px 0 0 12px;
    transition: width 0.3s ease;
}

.document-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.document-item:hover::before {
    width: 8px;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-info h3 {
    font-size: 18px;
    color: #1a3a4a;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.document-meta {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.document-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.document-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-btn {
    background: linear-gradient(135deg, #2c5f7d 0%, #4a8fb0 100%);
    color: #fff;
}

.view-btn:hover {
    background: linear-gradient(135deg, #4a8fb0 0%, #2c5f7d 100%);
    box-shadow: 0 5px 15px rgba(44, 95, 125, 0.3);
}

.download-btn {
    background: linear-gradient(135deg, #f2c200 0%, #f4c934 100%);
    color: #000;
}

.download-btn:hover {
    background: linear-gradient(135deg, #f4c934 0%, #f2c200 100%);
    box-shadow: 0 5px 15px rgba(242, 194, 0, 0.3);
}

/* ================== INVESTORS CONTACT ================== */
.investors-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #f2c200;
    padding: 30px;
    border-radius: 12px;
}

.investors-contact h2 {
    font-size: 28px;
    color: #1a3a4a;
    margin-bottom: 10px;
}

.investors-contact p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
}

.contact-info strong {
    color: #2c5f7d;
    font-weight: 600;
}

/* ================== FOOTER ================== */
footer {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 30px 20px 20px 20px;
}

.footer-top h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.footer-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 20px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-left p, .footer-right p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

/* ================== LOGO ================== */
.logo img {
    width: 145px;
    height: auto;
}

/* ================== ADAPTIVE / MOBILE ================== */

/* Tablets and below (768px) */
@media (max-width: 968px) {
    /* Header mobile menu */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-flex .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .header-flex .menu.active {
        right: 0;
    }

    .header-flex .menu ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .header-flex .menu ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    .header-flex .menu ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 16px;
    }

    /* Hero section */
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title h1 {
        font-size: 32px;
    }

    .hero-title::after {
        min-width: 50px;
    }

    .hero-subtitle p {
        font-size: 18px;
    }

    .hero-subtitle::after {
        min-width: 0;
    }

    .hero-title,
    .hero-subtitle {
        padding: 12px 20px;
    }

    /* Content adjustments */
    .content {
        padding: 50px 20px;
    }

    .content-inner h2 {
        font-size: 28px;
    }

    .content-inner {
        font-size: 16px;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Values section */
    .values-section h3 {
        font-size: 24px;
    }

    .values-tags {
        gap: 10px;
    }

    .value-tag {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Intro box */
    .intro-box {
        padding: 20px;
    }

    .intro-box p {
        font-size: 18px;
    }

    /* Contacts */
    .contacts-flex {
        flex-direction: column;
    }

    .hero-contacts h1,
    .hero-reporting h1,
    .hero-investors h1 {
        font-size: 32px;
    }

    .hero-contacts,
    .hero-reporting,
    .hero-investors {
        padding: 60px 20px;
    }

    /* Reports grid */
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .reporting-intro {
        padding: 20px;
    }

    .reporting-intro p {
        font-size: 16px;
    }

    .reporting-category h2 {
        font-size: 24px;
    }

    /* File menu */
    .file-menu {
        max-height: 250px;
    }

    .file-menu-item {
        padding: 10px 12px;
    }

    .file-menu-icon {
        width: 28px;
        height: 28px;
    }

    /* Investors */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .document-actions {
        flex-direction: column;
        width: 100%;
    }

    .document-btn {
        width: 100%;
        justify-content: center;
    }

    .investors-intro h2,
    .investors-benefits h2,
    .investors-documents h2,
    .investors-contact h2 {
        font-size: 24px;
    }

    /* Footer */
    .footer-flex {
        flex-direction: column;
    }

    .footer-left, .footer-right {
        min-width: 100%;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .logo img {
        width: 100px;
    }

    .header-flex {
        height: 70px;
    }

    .hero-title h1 {
        font-size: 24px;
    }

    .hero-subtitle p {
        font-size: 16px;
    }

    .content-inner h2 {
        font-size: 24px;
    }

    .hero-contacts h1,
    .hero-reporting h1,
    .hero-investors h1 {
        font-size: 28px;
    }

    .report-card,
    .feature-card,
    .benefit-card {
        padding: 20px;
    }

    .value-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.map-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* мобільна адаптація */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
        display: block;
    }
}