* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #f1f5f9;
}

.container {
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-container {
    gap: 10px;
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

#images {
    padding: 70px;
}

#new-button {
    margin-left: 10px;
    font-size: 19px;
    padding: 2px 10px;
    border-radius: 12px;
    background-color: #FF6E07;
    color: #fff;
    border: none;
    opacity: 0.8;
}

#navLinks li a{
    font-size: 22px;
}

/* Header & Navigation */
header {
    background-color: #090158;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    align-items: center;
}

.header-container {
    max-width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    color: #e63946;
    margin-right: 10px;
    font-size: 28px;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #e63946;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #DFE5E9;
    color: white;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #10B879;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-content h2 {
    font-size: 64px;
    max-width: 80%;
    margin: 2% auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-content p {
    font-size: 24px;
    max-width: 80%;
    margin: 1% auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-badge {
    margin: 3%;
    font-size: 40px;
    padding: 12px 20px;
    border-radius: 30px;
    background: #FF6E07;
    color: #fff;
    border: none;
    opacity: 0.8;
}

.hero-badge:hover {
    background-color: #F5F5F5;
    color: #090158;
    transform: translateY(-5px);
    border-color: white;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1faee;
}

.hero-description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #e2e8f0;
    line-height: 1.8;
}

/* Media Icons */
.media-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.media-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.media-icon:hover {
    background-color: rgba(230, 57, 70, 0.9);
    transform: translateY(-5px);
    border-color: white;
}

.media-icon.tv {
    color: #e63946;
}

.media-icon.newspaper {
    color: #457b9d;
}

.media-icon.radio {
    color: #a8dadc;
}

.media-icon.online {
    color: #f1faee;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background-color: white;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* =========== */
.policy-section {
    width: 100%;
    border-radius: 4px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
}

/* メインタイトル - POLICY */
.policy-title {
    font-size: 32px;
    font-weight: 800;
    color: #090158;
    letter-spacing: 2px;
    margin-bottom: 5px;
    line-height: 1;
}

/* サブタイトル - PRポリシー */
.policy-subtitle {
    font-size: 48px;
    color: #090158;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* 日本語サブタイトルの中の「PR」のスタイル */
.pr-text {
    color: #090158;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 区切り線 */
.divider {
    width: 100px;
    height: 3px;
    background-color: #d32f2f;
    margin: 0 auto 40px auto;
}

/* メッセージ */
.policy-message {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* 「成果」の強調スタイル */
.highlight {
    color: #d32f2f;
    font-weight: 700;
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(211, 47, 47, 0.2);
}

/* 装飾要素 */
.decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(211, 47, 47, 0.1);
    border-radius: 50%;
}

.decoration-1 {
    top: 30px;
    left: 30px;
}

.decoration-2 {
    bottom: 30px;
    right: 30px;
}


/* レスポンシブ対応 */
@media (max-width: 1015px) {
    .policy-section {
        padding: 40px 30px;
    }

    .policy-title {
        font-size: 42px;
    }

    .policy-subtitle {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .policy-message {
        font-size: 22px;
    }

    .decoration {
        width: 60px;
        height: 60px;
    }

    .decoration-1 {
        top: 20px;
        left: 20px;
    }

    .decoration-2 {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {

    .policy-section {
        padding: 35px 25px;
    }

    .policy-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .policy-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .policy-message {
        font-size: 20px;
    }

    .divider {
        width: 80px;
        margin-bottom: 30px;
    }

    .decoration {
        width: 50px;
        height: 50px;
    }

    .decoration-1 {
        top: 15px;
        left: 15px;
    }

    .decoration-2 {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 360px) {
    .policy-title {
        font-size: 32px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-message {
        font-size: 18px;
    }
}

/* ============== */

.news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 120px;
    background-color: #e60012;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.text-content {
    width: 100%;
    font-weight: 900;
    text-align: center;
}

/* Individual item styling */
.line-news .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.5px;
}

.newsweek .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #000000;
    letter-spacing: 0.5px;
}

.financial-news .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    line-height: 1.1;
}

.shopping-news .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    line-height: 1.1;
}

.seller .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.5px;
}

.nikkei-business .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
    line-height: 1.1;
}

.yahoo-japan {
    grid-column: span 2;
    width: 100%;
}

.yahoo-japan .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #000000;
    letter-spacing: 0.5px;
    line-height: 1;
}

.yahoo-japan .yahoo-line {
    font-size: 32px;
    margin-bottom: 5px;
}

.yahoo-japan .japan-line {
    font-size: 26px;
}

.livedoor-news .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0.5px;
}

.ohayou-nippon .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
    line-height: 1.1;
}

.toyama-news .text-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
    line-height: 1.1;
}

.news .text-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #000000;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
    }

    .yahoo-japan {
        grid-column: span 1;
    }

    .grid-container {
        display: block;
    }

    .grid-container div {
        padding: 15px;
    }

    #images {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .image-placeholder {
        height: 100px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .yahoo-japan {
        grid-column: span 1;
    }
}

/* ================= */
.content-section {
    margin-top: 70px;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 画像セクション - 左側50% */
.image-section {
    border-radius: 22px;
    width: 100%;
    height: 100%;
    flex: 0 0 50%;
    background-color: #f2f2f2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
    color: #aaa;
    font-size: 14px;
}

.image-placeholder::before {
    content: "イメージ画像";
    display: block;
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.image-placeholder::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-color: #ddd;
    border-radius: 2px;
    margin-top: 10px;
}

/* テキストセクション - 右側50% */
.text-section {
    flex: 0 0 50%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* タイトル */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #090158;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.section-title span {
    font-size: 25px;
}

.section-title p {
    font-size: 19px;
}

.text-section p {
    font-size: 16px;
}

.section p {
    font-size: 19px;
    font-weight: 600;
}

.section li {
    font-size: 16px;
    font-weight: 600;
}

/* 本文段落 */
.content-paragraph {
    font-weight: 700;
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 引用風の特別な段落 */
.quote-paragraph {
    background-color: #f9f9f9;
    padding: 25px 30px;
    margin: 30px 0;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    border-radius: 0 4px 4px 0;
}

/* 引用内の強調部分 */
.highlight {
    color: #d32f2f;
    font-weight: 600;
}

/* 右向き矢印 */
.arrow {
    text-align: right;
    margin-top: 20px;
}

.arrow-symbol {
    font-size: 24px;
    color: #d32f2f;
    font-weight: 300;
    display: inline-block;
    transform: scale(1.5, 1);
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .content-section {
        flex-direction: column;
        min-height: auto;
    }

    .image-section {
        min-height: 250px;
    }

    .text-section {
        padding: 40px 35px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .content-paragraph,
    .quote-paragraph {
        font-size: 16px;
    }

    .quote-paragraph {
        padding: 20px 25px;
        margin: 25px 0;
    }

    .section p {
        font-size: 15px;
        font-weight: 600;
    }

    .section li {
        font-size: 13px;
        font-weight: 600;
    }

    .sub-title {
        font-size: 19px;
    }

    #blue-text h1 {
        font-size: 16px !important;
    }

    #blue-text span {
        font-size: 28px !important;
    }
    #white-text h1 {
        font-size: 16px !important;
    }

    #white-text span {
        font-size: 28px !important;
    }

}

@media (max-width: 600px) {

    .image-section {
        min-height: 200px;
    }

    .text-section {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .content-paragraph {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .quote-paragraph {
        padding: 18px 22px;
        margin: 20px 0;
        font-size: 15px;
        line-height: 1.7;
    }

    .arrow {
        margin-top: 15px;
    }
}

@media (max-width: 400px) {
    .text-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .content-paragraph,
    .quote-paragraph {
        font-size: 14px;
    }
}

/* =============== */
#blue-text {
    background-color: #090158;
    display: flex;
    padding: 15px;
}

#white-text {
    display: flex;
    padding: 25px;
}

#blue-text h1 {
    font-size: 24px;
    color: white;
}

#blue-text span {
    font-size: 40px;
    color: red;
}
#white-text h1 {
    font-size: 24px;
}

#white-text span {
    font-size: 40px;
    color: #090158;
}

/* ================= */
.section-title {
    display: flex;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #1a2b4c;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title-concept {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #FF6E07;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 4px;
    background-color: #090158;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 40px;
}

.highlight {
    color: #e63946;
    font-weight: 700;
}

/* Features Section */
.features {
    background-color: #f1f5f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow:
        -2px -2px 0 #D9D9D9,
        2px -2px 0 #D9D9D9,
        -2px 2px 0 #D9D9D9,
        2px 2px 0 #D9D9D9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    color: #e63946;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 20px;
}

.feature-text {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.cta-text {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #e63946;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: #f1faee;
}

.achievement-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* カード共通スタイル */
.achievement-card {
    border-radius: 22px !important;
    width: 50%;
    flex: 1;
    min-width: 300px;
    background-color: #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    min-height: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 画像セクション - 左50% */
.image-section {
    border-radius: 22px;
    flex: 0 0 50%;
    background-color: #f2f2f2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
    color: #aaa;
    font-size: 14px;
}

.image-placeholder::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-color: #ddd;
    border-radius: 2px;
    margin-bottom: 10px;
}

/* テキストセクション - 右50% */
.text-section {
    text-align: center;
    flex: 0 0 50%;
    padding: 55px 25px;
    display: flex;
    flex-direction: column;
}

/* 千葉システム開発会社様のカード */
.card-1 .company-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-1 .company-desc {
    font-size: 20px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.result-container {
    background-color: #DFE5E9;
}

.card-1 .result-container div {
    font-size: 24px;
    color: black;
    padding: 0 35px;
}

.result-container span {
    color: red;
    font-size: 36px;
    padding: 15px;
}

.card-1 .result-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.card-1 .result-value {
    font-size: 22px;
    color: #e53935;
    font-weight: 700;
    line-height: 1.3;
}

/* 物流サービス企業様のカード */
.card-2 .company-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-2 .capital-section {
    margin-bottom: 20px;
}

.card-2 .capital-label {
    font-size: 20px;
    color: #777;
    margin-bottom: 5px;
}

.card-2 .capital-value {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.funding-container {
    background-color: #DFE5E9;
}

.card-2 .funding-container div {
    font-size: 24px;
    color: black;
    padding: 0 35px;
}

.funding-container span {
    color: red;
    font-size: 36px;
    padding: 15px;
}

.card-2 .funding-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.card-2 .funding-value {
    font-size: 22px;
    color: #e53935;
    font-weight: 700;
    line-height: 1.3;
}

.view-all-button {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 70px;
    background-color: #090158;
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background-color: #444;
}

.view-all-btn:hover::after {
    transform: translateX(5px);
}

.hid-img {
    display: none;
}

/* レスポンシブデザイン */
@media (max-width: 900px) {
    .achievement-card {
        flex-direction: column;
        min-height: auto;
    }

    .image-section,
    .text-section {
        flex: 0 0 100%;
    }

    .image-section {
        min-height: 180px;
    }

    .text-section {
        padding: 20px;
        min-height: 200px;
    }

    .card-1 .company-desc {
        margin-bottom: 20px;
    }

    .image-section img:first-of-type {
        width: 60%;
    }

    .hid-img {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .achievement-row {
        flex-direction: column;
    }

    .achievement-card {
        min-width: 100%;
    }

    .view-all-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    #story-features h1 {
        font-size: 24px !important;
    }

    #story-features p {
        font-size: 16px !important;
    }

    #story-features h6 {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {

    .text-section {
        padding: 18px;
    }

    .card-1 .company-name,
    .card-2 .company-name {
        font-size: 18px;
    }

    .card-1 .company-desc {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .card-1 .result-value,
    .card-2 .funding-value {
        font-size: 20px;
    }

    .card-2 .capital-value {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 13px;
    }
}

/* ========== */
#story-features {
    background-color: #F5F5F5;
}

#story-features h1 {
    color: #090158;
    font-size: 40px;
}

#story-features p {
    font-size: 22px;
}

#story-features h6 {
    font-size: 20px;
}

/* Footer */
footer {
    background-color: #090158;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.footer-contact {
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact strong {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #a0aec0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 1205px) {
    .nav-links li {
        margin: 10px;
    }

    .logo h4 {
        font-size: 17px;
    }

    .logo img {
        width: 35%;
        padding-right: 0;
    }
}
@media (max-width: 1560px) {
    #navLinks li a{
    font-size: 20px;
}
}
@media (max-width: 1370px) {
    #navLinks li a{
    font-size: 15px;
}
}

@media screen and (max-width: 1015px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #214079;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hero {
        padding: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 18px;
    }

    .mission-text {
        font-size: 20px;
    }

    .media-icons {
        gap: 20px;
    }

    .media-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .section-title {
        font-size: 30px;
    }

    .mission-text {
        font-size: 18px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }
}

/* Animation for scroll */
.fade-in {
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ====================== */