/* ============================================================
   Caridad Dnipro — Public Site CSS
   Стиль: зелёный, гуманитарный, доверительный
   Полностью адаптивный: mobile / tablet / desktop
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --cream:    #f2f5f0;
    --white:    #ffffff;
    --warm1:    #e8f0e4;
    --warm2:    #d0e0c8;
    --accent:   #3a6b22;
    --accent2:  #2d5219;
    --dark:     #1a2d12;
    --dark2:    #243d18;
    --text:     #1e3312;
    --text2:    #4a6b38;
    --text3:    #7a9a68;
    --green:    #3a6b22;
    --border:   #c8dcc0;
    --radius:   12px;
    --font-h:   'Fraunces', Georgia, serif;
    --font:     'DM Sans', sans-serif;
    --max-w:    1140px;
    --shadow:   0 4px 32px rgba(30,60,10,0.08);

    --section-py: 72px;
    --container-px: 24px;

    /* Project content page */
    --primary-color: #2d5016;
    --primary-hover: #1a3009;
    --accent-color:  #4a7c2c;
    --teal-color:    #019587;
    --teal-hover:    #017368;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.page-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.2;
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(30,60,10,0.07);
}
.site-header .container {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 68px;
}
.logo { flex-shrink: 0; }
.logo img { height: 44px; }

.main-nav { flex: 1; }
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
}
.main-nav a {
    display: block;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
    white-space: nowrap;
}
.main-nav a:hover {
    color: var(--accent);
    background: var(--warm1);
    text-decoration: none;
}
.donate-link a {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 7px 14px !important;
    border-radius: 8px !important;
}
.donate-link a:hover {
    background: var(--accent2) !important;
    text-decoration: none;
}

/* Переключатель языков */
.lang-switcher { flex-shrink: 0; }

.lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: var(--warm1);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.15s;
    font-family: var(--font);
}
.lang-switcher__toggle:hover { background: var(--warm2); }
.lang-switcher__toggle .arrow {
    font-size: 10px;
    transition: transform 0.2s;
    color: var(--text3);
}
.lang-switcher.open .lang-switcher__toggle .arrow { transform: rotate(180deg); }

.lang-switcher__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(30,60,10,0.12);
    min-width: 160px;
    z-index: 300;
    overflow: hidden;
}
.lang-switcher.open .lang-switcher__dropdown { display: block; }

.lang-switcher__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s;
    border-bottom: 1px solid var(--warm1);
}
.lang-switcher__dropdown a:last-child { border-bottom: none; }
.lang-switcher__dropdown a:hover { background: var(--warm1); }
.lang-switcher__dropdown a.active {
    background: var(--warm1);
    color: var(--accent);
    font-weight: 700;
}
.lang-switcher__dropdown .lang-code {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    min-width: 26px;
    color: var(--text3);
}
.lang-switcher__dropdown a.active .lang-code { color: var(--accent); }
.lang-switcher__dropdown .lang-name { flex: 1; }
.lang-switcher__dropdown a.active::after { content: '✓'; font-size: 12px; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
}
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: var(--dark);
    color: #fff;
    padding: 100px 0 80px;
    overflow: hidden;
    text-align: center;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(58,107,34,0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 30%, rgba(58,107,34,0.18) 0%, transparent 50%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; max-width: 760px; }
.hero__title {
    font-family: var(--font-h);
    font-size: clamp(24px, 6vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.hero__subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
    background: var(--accent);
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-card {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-card:last-child { border-right: none; }
.stat-card__number {
    font-family: var(--font-h);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-card__label {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.projects-section,
.news-section,
.reports-section { padding: var(--section-py) 0; }
.reports-section { background: var(--warm1); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
    flex-wrap: wrap;
}
.section-header h2 {
    font-family: var(--font-h);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

/* PROJECT CARDS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 48px rgba(30,60,10,0.14);
}
.project-card__image img {
    width: 100%; height: 200px;
    object-fit: cover;
}
.project-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.project-card__body h3,
.project-card__body h2 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--dark);
}
.project-card__body h3 a,
.project-card__body h2 a { color: var(--dark); }
.project-card__body h3 a:hover,
.project-card__body h2 a:hover { color: var(--accent); text-decoration: none; }
.project-card__body p { color: var(--text2); font-size: 14px; margin-bottom: 16px; flex: 1; }
.read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

/* NEWS GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-card__body { padding: 18px; flex: 1; }
.news-card__date {
    display: block;
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 8px;
    font-weight: 500;
}
.news-card__body h3,
.news-card__body h2 {
    font-family: var(--font-h);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark);
}
.news-card__body h3 a,
.news-card__body h2 a { color: var(--dark); }
.news-card__body h3 a:hover,
.news-card__body h2 a:hover { color: var(--accent); text-decoration: none; }

/* REPORTS */
.reports-list { display: flex; flex-direction: column; gap: 12px; }
.report-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.15s;
    flex-wrap: wrap;
}
.report-item:hover { transform: translateX(4px); }
.report-item__icon { font-size: 22px; flex-shrink: 0; }
.report-item__info { flex: 1; min-width: 0; }
.report-item__info a {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    word-break: break-word;
}
.report-item__info a:hover { color: var(--accent); }

/* CTA */
.cta-section {
    background: var(--dark2);
    color: #fff;
    padding: var(--section-py) 0;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-section p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    font-size: 17px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.15s;
    font-family: var(--font);
    white-space: nowrap;
    line-height: 1.3;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 14px 30px; font-size: 17px; }
.btn-sm { padding: 6px 13px; font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 60px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-about img {
    height: 36px;
    margin-bottom: 14px;
    filter: brightness(0) invert(1) opacity(0.8);
}
.footer-about p { font-size: 14px; line-height: 1.6; }
.site-footer h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: color 0.15s;
}
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    z-index: 9999;
    max-width: 700px;
    width: calc(100% - 32px);
    border: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.cookie-banner__content { display: flex; align-items: center; gap: 20px; flex: 1; flex-wrap: wrap; }
.cookie-banner__content p { font-size: 14px; color: rgba(255,255,255,0.8); flex: 1; min-width: 180px; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-py: 56px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .main-nav a { padding: 6px 8px; font-size: 13px; }
    .donate-link a { padding: 7px 12px !important; font-size: 13px; }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET / LARGE PHONE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-py: 48px;
        --container-px: 16px;
    }

    .site-header .container { height: 60px; gap: 12px; }
    .logo img { height: 36px; }

    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 199;
        overflow-y: auto;
        padding: 24px 16px;
        border-top: 1px solid var(--border);
    }
    .main-nav.is-open { display: block; }
    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }
    .main-nav a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        border-bottom: 1px solid var(--warm1);
    }
    .main-nav ul li:last-child a { border-bottom: none; }
    .donate-link { margin-top: 12px; }
    .donate-link a {
        display: block;
        text-align: center;
        padding: 14px 16px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }

    .mobile-menu-toggle { display: flex; }

    .hero { padding: 64px 0 48px; }
    .hero__actions { gap: 10px; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
    .stat-card:nth-last-child(-n+2) { border-bottom: none; }

    .projects-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }

    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    .lang-switcher__dropdown { right: 0; left: auto; }

    /* Project content page */
    .project-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    .btn-project {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    .fundraising-status {
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
    }
    .two-column-section { grid-template-columns: 1fr; }
    .two-column-section .image-content { position: static; }
    .image-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .content-section { padding: 1.5rem; margin-bottom: 1.5rem; }
    .content-section p { font-size: 1.05rem; line-height: 1.7; text-align: left; }
    .section-heading { font-size: 1.25rem; margin: 1.5rem 0 1rem; }
    .hero-image,
    .full-width-image img { border-radius: 8px; margin: 1.5rem 0; }
    .divider { margin: 2rem 0; }
    .important-notice { padding: 1.5rem; margin: 2rem 0; }
    .important-notice p { font-size: 1rem; }
    .important-notice p:first-of-type { font-size: 1.1rem; }
    .back-link { font-size: 1.1rem; margin: 1.5rem 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --section-py: 40px;
        --container-px: 14px;
    }

    .site-header .container { height: 56px; }
    .logo img { height: 32px; }

    .hero { padding: 48px 0 40px; }
    .hero__subtitle { font-size: 15px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }

    .cookie-banner {
        bottom: 0;
        border-radius: 12px 12px 0 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner__actions { justify-content: stretch; }
    .cookie-banner__actions .btn { flex: 1; }

    .btn-lg { padding: 13px 20px; font-size: 15px; }
    .report-item { padding: 14px 16px; }
    .lang-switcher__dropdown { right: auto; left: 0; }
}

/* ============================================================
   RESPONSIVE — ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
    :root { --container-px: 12px; }
    .main-nav a { padding: 12px 14px; font-size: 15px; }
    .stat-card__number { font-size: 24px; }
    .stat-card__label { font-size: 11px; }
}

/* ============================================================
   JS: мобильное меню
   ============================================================ */
body.menu-open { overflow: hidden; }

/* Ссылка на админку в навигации */
.admin-nav-link a {
    color: var(--text3) !important;
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.admin-nav-link a:hover {
    color: var(--accent) !important;
    background: var(--warm1);
    border-color: var(--warm2);
    text-decoration: none;
}

/* ============================================================
   HELP SECTION
   ============================================================ */
.help-section { margin: 3rem 0; }

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.help-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    border: none;
}
.help-card:hover .help-icon { transform: scale(1.1); }

.help-title { font-weight: bold; color: #000; }
.help-title a { color: #000; text-decoration: none; transition: color 0.3s ease; }
.help-title a:hover { color: var(--accent-color); }

/* ============================================================
   PROJECT CONTENT PAGE
   (перенесено из inline <style> шаблона страницы проекта)
   ============================================================ */
.project-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.project-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    align-items: center;
}

.btn-project {
    display: inline-block;
    background-color: var(--teal-color);
    border: 1px solid var(--teal-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(1, 149, 135, 0.3);
}
.btn-project:hover {
    background-color: var(--teal-hover);
    border-color: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 149, 135, 0.4);
    color: white !important;
}

.fundraising-status {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
}
.fundraising-status .amount { color: #008000; }

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 20%, var(--accent-color) 80%, transparent 100%);
    margin: 3rem 0;
    border: none;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.content-section p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.section-heading {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
}

.two-column-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}
.two-column-section .text-content p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
}
.two-column-section .image-content {
    position: sticky;
    top: 2rem;
}
.two-column-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.full-width-image {
    text-align: center;
    margin: 2rem 0;
}
.full-width-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.full-width-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.important-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 4px solid #ff0000;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.important-notice p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.important-notice p:first-of-type {
    font-weight: bold;
    color: #ff0000;
    font-size: 1.2rem;
}

.back-link {
    display: inline-block;
    margin: 2rem 0;
    font-size: 1.3rem;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}
.back-link:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .project-container { max-width: 100%; padding: 0 2rem; }
    .content-section p { font-size: 1.1rem; }
}