/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary-color: #35446D;
    --secondary-color: #6B779B;
    --accent-color: #4A90E2;
    --text-color: #414141;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-main: #FFFFFF;
    --bg-gray: #F5F7FA;
    --border-color: #E0E4E8;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header
   ======================================== */
.header {
    background-color: var(--bg-main);
    box-shadow: var(--shadow);
    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;
    max-width: 100%;
    object-fit: contain;
}

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

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

/* ========================================
   Navigation
   ======================================== */
.navigation {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.nav-menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
}

.nav-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--text-white);
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu li:last-child a {
    border-right: none;
}

.nav-menu a:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(53, 68, 109, 0.7), rgba(107, 119, 155, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ========================================
   Main Article
   ======================================== */
.main-article {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    line-height: 1.4;
}

.hero-banner {
    margin-bottom: 30px;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 20px;
}

.highlight-text {
    background-color: #FFF9E6;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 500;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--bg-gray);
    padding: 12px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--bg-main);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.news-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.news-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
}

.info-box .widget-title {
    color: var(--text-white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.small-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-white);
    font-size: 0.95rem;
    padding: 0 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }

    .main-article {
        padding: 30px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
        max-width: 280px;
        object-fit: contain;
    }

    .hero-image {
        height: 250px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

    .navigation.active {
        left: 0;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px 25px;
        text-align: left;
    }

    .main-content {
        padding: 30px 0;
    }

    .main-article {
        padding: 25px 20px;
    }

    .page-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

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

    .content-section {
        margin-top: 30px;
        padding-top: 30px;
    }

    .section-title {
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    .subsection-title {
        font-size: 1.1rem;
    }

    .footer {
        padding: 25px 0;
    }

    .footer-links a {
        display: block;
        padding: 8px 0;
    }

    .separator {
        display: none;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-article,
.sidebar-widget {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--text-white);
}

.page-header-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========================================
   Sidebar Navigation
   ======================================== */
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-color);
    background-color: var(--bg-gray);
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: var(--accent-color);
    color: var(--text-white);
    transform: translateX(5px);
}

.sidebar-nav i {
    font-size: 0.8em;
}

/* ========================================
   Styled Lists
   ======================================== */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.styled-list i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.styled-list strong {
    color: var(--primary-color);
}

/* ========================================
   Mission Stats
   ======================================== */
.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-item {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.95;
}

/* ========================================
   Plan Box & CTA
   ======================================== */
.plan-box {
    background-color: var(--bg-gray);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--accent-color);
}

.plan-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-box h4 i {
    color: var(--accent-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: var(--text-white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--primary-color);
}

/* ========================================
   Organization & Partner Boxes
   ======================================== */
.organization-box,
.partner-box {
    background-color: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: var(--shadow);
}

.organization-box h3,
.partner-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.organization-box h3 i,
.partner-box h3 i {
    color: var(--accent-color);
}

.org-info,
.partner-info {
    padding: 15px;
}

.org-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.org-role {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.org-details,
.partner-details {
    background-color: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.org-details p,
.partner-details p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.org-details strong,
.partner-details strong {
    color: var(--primary-color);
}

.partner-box {
    border-left: 5px solid var(--accent-color);
}

/* ========================================
   Participation Steps & Info Box
   ======================================== */
.participation-steps {
    margin: 30px 0;
}

.step-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background-color: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-content h4 i {
    color: var(--accent-color);
}

.step-content p {
    color: var(--text-color);
    line-height: 1.7;
}

.info-box {
    background-color: #E8F4FD;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.info-box p {
    margin: 0;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background-color: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-detail a {
    color: var(--accent-color);
}

.contact-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-gray);
    padding: 35px;
    border-radius: 12px;
    margin: 30px 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.required {
    background-color: #E74C3C;
    color: var(--text-white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.optional {
    background-color: var(--text-light);
    color: var(--text-white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-main);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.office-info {
    background-color: var(--bg-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.office-info p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.office-info i {
    color: var(--accent-color);
    width: 20px;
}

/* FAQ List */
.faq-list {
    padding: 15px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-question {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.faq-question i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 28px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

/* ========================================
   Privacy Policy Page
   ======================================== */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-main);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.policy-intro {
    background-color: var(--bg-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 40px;
}

.policy-intro p {
    margin: 0;
    line-height: 1.8;
}

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

.policy-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.policy-text {
    line-height: 1.8;
    color: var(--text-color);
}

.policy-text p {
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2em;
}

.contact-box {
    background-color: var(--bg-gray);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-footer {
    text-align: right;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
}

.policy-footer p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 1.2rem;
    }
}

/* ========================================
   Links Page
   ======================================== */
.links-content {
    max-width: 1000px;
    margin: 0 auto;
}

.links-section {
    margin-bottom: 50px;
}

.links-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.links-section-title i {
    color: var(--accent-color);
}

.link-cards {
    display: grid;
    gap: 25px;
}

.link-card {
    display: flex;
    gap: 25px;
    background-color: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.link-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.link-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.link-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
}

.link-url {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-url:hover {
    color: var(--primary-color);
}

.link-url i {
    font-size: 0.8em;
}

.org-info-small {
    background-color: var(--bg-gray);
    padding: 15px;
    border-radius: 6px;
    margin-top: 12px;
}

.org-info-small p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.org-info-small p:last-child {
    margin-bottom: 0;
}

.org-info-small i {
    color: var(--accent-color);
    width: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .link-card {
        flex-direction: column;
        padding: 25px 20px;
    }
    
    .link-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .links-section-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   Signature
   ======================================== */
.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: right;
}

.signature-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.8;
}

/* ========================================
   Company List Styles
   ======================================== */
.company-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.company-item {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.company-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.company-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-name i {
    color: var(--accent-color);
    font-size: 1rem;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.company-info i {
    color: var(--accent-color);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.company-info a {
    color: var(--accent-color);
    text-decoration: underline;
    word-break: break-all;
}

.company-info a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .company-item {
        padding: 20px;
    }
    
    .company-name {
        font-size: 1.05rem;
    }
    
    .company-info p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .header,
    .navigation,
    .sidebar,
    .footer {
        display: none;
    }

    .main-article {
        box-shadow: none;
        padding: 0;
    }
}
