:root {
    --bg-color: #ffffff; 
    --bg-secondary: #f8fafc;
    --text-color: #1e293b; 
    --text-light: #64748b;
    --accent-color: #0ea5e9; 
    --accent-hover: #0284c7; 
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

#app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Top Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
}

/* Google Translate */
.lang-selector {
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.mobile-nav .nav-link {
    display: block;
    padding: 0.6rem 1rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: -1px;
    color: var(--text-color);
}

.logo span {
    color: var(--accent-color);
}

/* Logo resmi için stil */
.logo-img {
    height: 52px;
    width: auto;
    cursor: pointer;
    object-fit: contain;
    display: block;
}

/* Breadcrumb */
#breadcrumb-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

#breadcrumb-nav span {
    cursor: pointer;
    transition: color 0.2s;
}

#breadcrumb-nav span:hover {
    color: var(--accent-color);
}

#breadcrumb-nav .separator {
    cursor: default;
    color: #cbd5e1;
}

/* Hero & Filter Area */
.hero-search {
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.5)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-search h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-search p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Kurumsal Filtre Çubuğu */
.filter-bar {
    display: flex;
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    gap: 1rem;
    width: 100%;
    max-width: 900px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.filter-group label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-secondary);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

.filter-group select:focus {
    border-color: var(--accent-color);
}

.filter-group select:disabled {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.filter-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    height: 47px; /* select'ler ile hizalamak için */
}

.filter-btn:hover {
    background: var(--accent-hover);
}

.filter-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-btn {
        margin-top: 1rem;
    }
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 800;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.section-header a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.section-header a:hover {
    color: var(--accent-hover);
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Cards (Clean Blog Style) */
.card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0; /* Görsel yüklenemezse gri arka plan */
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    color: transparent;       /* Resim yüklenemezse alt text'i gizle */
    display: block;
    background: #e2e8f0;      /* Yüklenemeyen resimlerin arka planı */
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    gap: 1rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.4;
    transition: color 0.2s;
}

.card:hover .card-title {
    color: var(--accent-color);
}

.card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Video Cards */
.video-card .card-img-wrapper::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
}

.video-card:hover .card-img-wrapper::after {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.video-card .card-title {
    margin-bottom: 0;
}

/* Detail Views / Regional Views */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.detail-view {
    animation: fadeIn 0.5s ease forwards;
}

.detail-hero {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.detail-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.detail-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.detail-section h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 0.8rem;
    font-weight: 700;
}

.detail-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.places-list, .food-list {
    list-style-type: none;
}

.places-list li, .food-list li {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.2s;
}

.places-list li:hover, .food-list li:hover {
    transform: translateX(5px);
}

.places-list li strong, .food-list li strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* Mobile Responsiveness Updates */
@media (max-width: 992px) {
    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-hero {
        height: 300px;
    }
    
    .detail-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-search h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.open {
        display: flex;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    #app-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
}

/* Admin info box */
.info-box {
    background: #fef9c3;
    border: 1px solid #fde047;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #713f12;
}

/* ===========================
   YAZILAR SAYFASI
=========================== */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.article-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.article-card-img {
    position: relative;
    height: 200px;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.5rem 0 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
}

.article-card:hover .article-card-title {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .article-card {
        grid-template-columns: 1fr;
    }
    .article-card-img {
        height: 200px;
    }
}

/* ===========================
   VİZE SAYFASI
=========================== */
.vize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vize-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s;
}

.vize-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.vize-card-bar {
    width: 6px;
    flex-shrink: 0;
}

.vize-card-body {
    padding: 1.5rem;
}

.vize-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.vize-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vize-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.vize-uyari {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    color: #1e40af;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

/* ===========================
   İLETİŞİM SAYFASI
=========================== */
.contact-page {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.whatsapp-card {
    border-color: #86efac;
    background: #f0fdf4;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.contact-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value:hover {
    color: var(--accent-color);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.brand-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #e2e8f0;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.brand-banner p {
    margin: 0;
    font-size: 1.05rem;
}

.brand-banner a {
    color: var(--accent-color);
    text-decoration: none;
}

.brand-link {
    background: var(--accent-color);
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background 0.2s;
}

.brand-link:hover {
    background: var(--accent-hover) !important;
}

/* ===========================
   FOOTER
=========================== */
.main-footer {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-color);
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-sub a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ===========================
   VİZE MODAL
=========================== */
.vize-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.vize-modal-overlay.open {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.vize-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 620px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.vize-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vize-modal-close:hover {
    background: #e2e8f0;
}

.vize-modal-header {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.vize-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
}

.vize-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vize-stat {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vize-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.vize-stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.vize-modal-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.vize-evrak-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.vize-evrak-list li {
    padding: 0.6rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    border-left: 3px solid var(--accent-color);
}

.vize-evrak-list li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
}

.vize-not {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
}

.vize-iletisim-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s;
}

.vize-iletisim-btn:hover {
    background: var(--accent-hover);
}

@media (max-width: 576px) {
    .vize-modal-stats {
        grid-template-columns: 1fr;
    }

    .vize-modal-box {
        padding: 1.5rem;
    }
}

/* =============================================
   DETAY SAYFASI GÖRSEL LİSTE STİLLERİ
=============================================== */
.visual-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.visual-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.visual-item:hover {
    transform: translateX(5px);
}

.item-visual {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #eee;
}

.item-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color, #2563eb);
    margin-bottom: 0.3rem;
}

.item-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 600px) {
    .visual-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .item-visual {
        width: 100%;
        height: 180px;
    }
}

