    /* Temel sayfa düzeltmeleri */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }

    *, *:before, *:after {
        box-sizing: inherit;
    }

    /* Yurtta İlk Gün Sayfası Stilleri */
    .article-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        line-height: 1.6;
        color: #333;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .article-content h1 {
        color: #c31a25;
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.2rem;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(195, 26, 37, 0.2);
        position: relative;
        letter-spacing: -0.5px;
    }

    .article-content h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #c31a25;
    }

    .article-content h2 {
        color: #c31a25;
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.6rem;
        border-left: 4px solid #c31a25;
        padding-left: 15px;
        letter-spacing: -0.3px;
    }

    .article-content h3 {
        color: #333;
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: 1.3rem;
        letter-spacing: -0.2px;
    }

    .article-content p {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.7;
    }
/* Yeni Geliştirilmiş Intro Section Tasarımı */
.intro-section {
background: linear-gradient(135deg, #fff, #f8f9fa);
border-radius: 16px;
margin: 15px 0 40px 0;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-top: 4px solid #c31a25;
border-bottom: 1px solid rgba(195, 26, 37, 0.2);
}

.intro-section .section-img {
width: 100%;
max-width: 400px;
height: auto;
border-radius: 12px;
margin: 0 auto;
display: block;
position: relative;
z-index: 2;
transform: scale(1);
transition: all 0.5s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
filter: saturate(1.1);
}

.intro-section:hover .section-img {
transform: scale(1.02);
filter: saturate(1.2);
}

.intro-content {
padding: 20px 25px;
position: relative;
}

.intro-section p {
font-size: 16px;
line-height: 1.8;
color: #444;
margin-bottom: 20px;
position: relative;
z-index: 2;
}

.intro-section p:first-of-type {
font-size: 16px;
font-weight: 500;
color: #222;
border-left: 3px solid #c31a25;
padding-left: 15px;
margin-top: 0;
animation: fadeInUp 0.6s ease-out 0.2s both;
}

.intro-section p:last-of-type {
margin-bottom: 25px;
background: rgba(195, 26, 37, 0.05);
padding: 15px;
border-radius: 8px;
font-weight: 400;
border-bottom: 2px dashed rgba(195, 26, 37, 0.2);
animation: fadeInUp 0.6s ease-out 0.4s both;
}


/* Mobil Düzenlemeler */
@media screen and (max-width: 768px) {
.intro-section {
    margin: 15px 5px 30px 5px;
    border-radius: 12px;
}

.intro-section .section-img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 0;
}

.intro-content {
    padding: 15px;
}

.intro-section p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.intro-section p:first-of-type {
    font-size: 14px;
    padding-left: 12px;
    border-left-width: 2px;
}

.intro-section p:last-of-type {
    font-size: 14px;
    padding: 12px;
    margin-bottom: 20px;
}

.quick-navigation {
    padding: 15px;
    margin-bottom: 10px;
}

.quick-nav-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-nav-btn {
    padding: 10px 12px;
    font-size: 13px;
}

.quick-nav-btn i {
    width: 26px;
    height: 26px;
    font-size: 13px;
    margin-right: 8px;
}

.quick-navigation h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.quick-navigation h3 i {
    width: 26px;
    height: 26px;
    font-size: 13px;
}

.quick-nav-btn:active {
    transform: scale(0.98);
    background-color: rgba(195, 26, 37, 0.1);
}
}

/* Tablet Düzenlemeler */
@media screen and (min-width: 769px) and (max-width: 1024px) {
.intro-section {
    margin: 20px 10px 35px 10px;
}

.intro-content {
    padding: 20px;
}

.intro-section .section-img {
    max-width: 90%;
}

.intro-section p:first-of-type {
    font-size: 17px;
}

.quick-navigation {
    padding: 18px;
}

.quick-nav-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
}
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .section {
        margin-bottom: 35px;
        animation: fadeIn 0.8s ease-out;
        position: relative;
        padding-bottom: 5px;
    }

    .section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(195, 26, 37, 0.1), transparent);
    }

    .section-img {
        max-width: 400px !important; /* Masaüstü için maksimum genişlik sınırı */
        width: 100% !important; /* Responsive davranış için */
        height: auto !important;
        object-fit: cover !important;
        border-radius: 10px;
        margin: 0 auto 20px auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: block;
        transition: all 0.3s ease;
    }

    .section-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .two-column {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        margin-top: 20px;
    }

    .two-column > div {
        flex: 1;
        min-width: 300px;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }

    .two-column > div:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

    .tip-box {
        background-color: #f8f9fa;
        border-left: 4px solid #17a2b8;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .tip-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(23, 162, 184, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .tip-box h3 {
        color: #17a2b8;
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }

    .tip-box h3 i {
        margin-right: 8px;
    }

    .tip-box.warning {
        border-left-color: #ffc107;
        background-color: rgba(255, 193, 7, 0.05);
    }

    .tip-box.warning h3 {
        color: #856404;
    }

    .tip-box.warning::after {
        background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    }

    .tip-box.success {
        border-left-color: #28a745;
        background-color: rgba(40, 167, 69, 0.05);
    }

    .tip-box.success h3 {
        color: #28a745;
    }

    .tip-box.success::after {
        background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    }

    .article-content ul, .article-content ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .article-content li {
        margin-bottom: 8px;
        position: relative;
        transition: transform 0.2s ease;
    }

    .article-content li:hover {
        transform: translateX(3px);
    }

    .article-content ul li {
        list-style-type: none;
        position: relative;
        padding-left: 18px;
        font-size: 14.5px;
    }

    .article-content ul li::before {
        content: "•";
        color: #c31a25;
        font-weight: bold;
        position: absolute;
        left: 0;
        transition: all 0.2s ease;
    }

    .article-content ul li:hover::before {
        color: #8c0e15;
        transform: scale(1.2);
    }

    /* Numaralı liste öğelerini stilize etme - İlk Giriş Adım Adım Rehberi için özel stiller */
    .article-content ol {
        counter-reset: item;
        list-style-type: none;
        padding-left: 0;
    }

    .article-content ol li {
        counter-increment: item;
        margin-bottom: 15px;
        position: relative;
        padding-left: 50px;
        font-size: 14.5px;
        min-height: 40px;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.4);
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }

    .article-content ol li::before {
        content: counter(item);
        position: absolute;
        left: 0;
        top: 0;
        width: 35px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #c31a25;
        color: white;
        font-weight: bold;
        border-radius: 5px 0 0 5px;
        transition: all 0.3s ease;
    }

    .article-content ol li:hover {
        transform: translateX(5px);
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .article-content ol li:hover::before {
        background-color: #8c0e15;
        width: 40px;
    }

    /* İlk Giriş: Adım Adım Rehber bölümü için özel stiller */
    .adim-adim-rehber ol {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .adim-adim-rehber ol li {
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 40px 1fr;
        align-items: start;
        min-height: 0;
        background: none;
        box-shadow: none;
        border-radius: 0;
        position: relative;
        transition: transform 0.3s ease;
    }

    .adim-adim-rehber ol li::before {
        content: counter(item);
        font-size: 14px;
        font-weight: bold;
        width: 30px;
        height: 30px;
        background-color: #c31a25;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: 5px;
        left: 0;
        transition: all 0.3s ease;
    }

    .adim-adim-rehber ol li b {
        display: block;
        margin-bottom: 4px;
        color: #222;
        font-weight: 600;
        font-size: 15px;
    }

    .adim-adim-rehber ol li .adim-icerik {
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 5px;
        border-left: 3px solid #c31a25;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        font-size: 14px;
        line-height: 1.5;
    }

    .adim-adim-rehber ol li:hover {
        transform: translateX(0); /* Varsayılan transformu geçersiz kıl */
    }

    .adim-adim-rehber ol li:hover .adim-icerik {
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-left-width: 5px;
    }

    .adim-adim-rehber ol li:hover::before {
        background-color: #8c0e15;
        transform: scale(1.1);
        width: 30px; /* Varsayılan genişliği koruyun */
    }

    /* İlerleyici adım göstergesi */
    .adim-adim-rehber ol::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 35px;
        bottom: 15px;
        width: 2px;
        background: linear-gradient(to bottom, rgba(195, 26, 37, 0.3), rgba(195, 26, 37, 0.05));
        z-index: 0;
    }

    /* Mobil düzenlemeler */
    @media screen and (max-width: 768px) {
        .article-content h1 {
            font-size: 1.8rem;
        }
        
        .article-content h2 {
            font-size: 1.4rem;
        }
        
        .article-content h3 {
            font-size: 1.2rem;
        }
        
        .two-column {
            flex-direction: column;
        }
        
        .two-column > div {
            min-width: 100%;
        }
        
        .advice-grid {
            flex-direction: column;
        }
        
        .advice-card {
            min-width: 100%;
        }
        
        .container {
            padding: 0 10px;
        }

        .article-content {
            padding: 10px;
            font-size: 14px;
        }

        .article-content p {
            font-size: 14px;
            line-height: 1.6;
        }

        .article-content ul li,
        .article-content ol li {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .section-img,
        .intro-section .section-img,
        img.section-img {
            max-width: 100% !important;
        }

        .article-content ol li {
            padding-left: 40px;
        }

        /* Mobil için Adım Adım Rehber özel stili */
        .adim-adim-rehber ol {
            gap: 15px;
            margin-left: 0;
            padding-left: 0;
        }
        
        .adim-adim-rehber ol li {
            grid-template-columns: 30px 1fr;
            padding-left: 0;
        }
        
        .adim-adim-rehber ol li::before {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }
        
        .adim-adim-rehber ol li .adim-icerik {
            padding: 8px;
            font-size: 13px;
        }
        
        .adim-adim-rehber ol li b {
            font-size: 14px;
        }

        /* Mobil için adım çizgisi düzenlemesi */
        .adim-adim-rehber ol::before {
            left: 12px;
        }
    }

    /* İlk Haftalar İçin Hızlı Tavsiyeler bölümü için grid düzenlemesi */
    .advice-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }

    .advice-card {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border-top: 3px solid #c31a25;
    }

    .advice-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(195, 26, 37, 0.1) 0%, transparent 70%);
        border-radius: 0 0 0 60px;
    }

    .advice-card i {
        color: #c31a25;
        font-size: 1.8rem;
        margin-bottom: 15px;
        display: block;
        transition: all 0.3s ease;
    }

    .advice-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-top-color: #8c0e15;
    }

    .advice-card:hover i {
        transform: scale(1.2);
        color: #8c0e15;
    }

    .advice-card h3 {
        margin-top: 0;
        font-size: 1.1rem;
        margin-bottom: 10px;
        font-weight: 600;
        color: #333;
    }

    .advice-card p {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }

    /* Testimonial bölümü için yeni stiller */
    .testimonials {
        padding: 10px 0;
    }

    .testimonial {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        position: relative;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .testimonial::before {
        content: '"';
        font-size: 60px;
        color: rgba(195, 26, 37, 0.1);
        position: absolute;
        top: 10px;
        left: 10px;
        font-family: 'Georgia', serif;
        line-height: 1;
    }

    .testimonial p {
        margin-left: 20px;
        position: relative;
        z-index: 1;
        font-style: italic;
        color: #444;
    }

    .testimonial span {
        display: block;
        text-align: right;
        font-weight: 500;
        color: #c31a25;
        margin-top: 10px;
        font-size: 0.9rem;
    }

    /* İki sütunlu içerik geliştirmeleri */
    .two-column > div {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        border-top: 2px solid rgba(195, 26, 37, 0.5);
    }

    .two-column > div::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        background: radial-gradient(circle, rgba(195, 26, 37, 0.1) 0%, transparent 70%);
        border-radius: 0 0 0 50px;
        z-index: 0;
    }

    .two-column > div h3 {
        color: #c31a25;
        margin-top: 0;
        border-bottom: 1px solid rgba(195, 26, 37, 0.1);
        padding-bottom: 10px;
        font-size: 1.2rem;
    }

    /* Tip-box geliştirmeleri */
    .tip-box {
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .tip-box:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

    .tip-box.success:hover {
        border-left-width: 6px;
    }

    .tip-box.warning:hover {
        border-left-width: 6px;
    }

    /* Mobil düzenlemeler */
    @media screen and (max-width: 768px) {
        /* ... existing code ... */

        .advice-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .advice-card {
            padding: 15px;
        }

        .advice-card i {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .testimonial {
            padding: 15px;
            margin-bottom: 15px;
        }

        .testimonial::before {
            font-size: 40px;
            top: 5px;
            left: 5px;
        }

        .testimonial p {
            margin-left: 10px;
            font-size: 14px;
        }
    }

    /* Hızlı Erişim (Quick Navigation) stilleri */
    .quick-navigation {
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .quick-navigation h3 {
        color: #444;
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 1.1rem;
        text-align: center;
    }

    .quick-navigation h3 i {
        color: #c31a25;
        margin-right: 5px;
    }

    .quick-nav-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .quick-nav-btn {
        background: white;
        color: #333;
        padding: 8px 15px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid rgba(195, 26, 37, 0.2);
        display: flex;
        align-items: center;
    }

    .quick-nav-btn i {
        margin-right: 5px;
        color: #c31a25;
        transition: all 0.3s ease;
    }

    .quick-nav-btn:hover {
        background: #c31a25;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(195, 26, 37, 0.2);
    }

    .quick-nav-btn:hover i {
        color: white;
    }

    /* Checklist stilleri */
    .checklist-container {
        margin-top: 15px;
    }

    .checklist-item {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }

    .styled-checkbox {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #c31a25;
        border-radius: 5px;
        margin-right: 10px;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .styled-checkbox:checked {
        background-color: #c31a25;
    }

    .styled-checkbox:checked::after {
        content: '✓';
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
    }

    .checklist-item label {
        cursor: pointer;
        line-height: 1.5;
        font-size: 14.5px;
    }

    /* Relationship Tips stilleri */
    .relationship-tips {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .relationship-tip {
        display: flex;
        background: white;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 3px solid #c31a25;
    }

    .relationship-tip:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-left-width: 5px;
    }

    .tip-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(195, 26, 37, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .tip-icon i {
        color: #c31a25;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .relationship-tip:hover .tip-icon i {
        transform: scale(1.2);
    }

    .tip-content {
        flex: 1;
    }

    .tip-content h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        color: #333;
    }

    .tip-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }

    /* Food Tips stilleri */
    .food-tips {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .food-tip {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
        border-top: 3px solid rgba(195, 26, 37, 0.7);
    }

    .food-tip:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .food-tip-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(195, 26, 37, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }

    .food-tip-icon i {
        color: #c31a25;
        font-size: 25px;
        transition: all 0.3s ease;
    }

    .food-tip:hover .food-tip-icon i {
        transform: scale(1.2);
    }

    .food-tip h4 {
        margin: 0 0 10px 0;
        font-size: 16px;
        color: #333;
    }

    .food-tip p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }

    /* Internet ve Teknoloji bölümü için grid */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .tech-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-bottom-color: #c31a25;
    }

    .tech-card-header {
        background: rgba(195, 26, 37, 0.05);
        padding: 15px;
        display: flex;
        align-items: center;
    }

    .tech-card-icon {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    }

    .tech-card-icon i {
        color: #c31a25;
        font-size: 18px;
    }

    .tech-card-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }

    .tech-card-content {
        padding: 15px;
    }

    .tech-card-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }
    
    /* Bütçe Bölümü için stiller */
    .budget-tips {
        margin-top: 20px;
    }
    
    .budget-tip {
        background: white;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        border-left: 3px solid rgba(195, 26, 37, 0.7);
    }
    
    .budget-tip:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .budget-icon {
        width: 45px;
        height: 45px;
        background: rgba(195, 26, 37, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .budget-icon i {
        color: #c31a25;
        font-size: 20px;
    }
    
    .budget-content {
        flex: 1;
    }
    
    .budget-content h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        color: #333;
    }
    
    .budget-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }

    /* Güvenlik Bölümü için stiller */
    .security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .security-card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-top: 3px solid #c31a25;
        position: relative;
        overflow: hidden;
    }
    
    .security-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(195, 26, 37, 0.1) 0%, transparent 70%);
        border-radius: 0 0 60px 0;
        z-index: 0;
    }
    
    .security-card i {
        color: #c31a25;
        font-size: 22px;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }
    
    .security-card h4 {
        margin: 0 0 10px 0;
        font-size: 16px;
        color: #333;
        position: relative;
        z-index: 1;
    }
    
    .security-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
        position: relative;
        z-index: 1;
    }
    
    .security-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Sağlıklı Kalmak bölümü için stiller */
    .health-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .health-tip {
        display: flex;
        background: white;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 3px solid #c31a25;
    }
    
    .health-tip:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .health-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(195, 26, 37, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .health-icon i {
        color: #c31a25;
        font-size: 18px;
    }
    
    .health-content {
        flex: 1;
    }
    
    .health-content h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        color: #333;
    }
    
    .health-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }

    /* Sosyalleşme İpuçları için CSS */
    .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }
    
    .social-card {
        display: flex;
        background: white;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-left: 3px solid #c31a25;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        background: rgba(195, 26, 37, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .social-icon i {
        color: #c31a25;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .social-content {
        flex: 1;
    }
    
    .social-content h4 {
        margin: 0 0 8px 0;
        font-size: 16px;
        color: #333;
    }
    
    .social-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }
    
    /* Son bölüm stilleri */
    .final-message {
        background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
        border-left: 4px solid #c31a25;
    }
    
    .final-message p {
        font-size: 15px;
        line-height: 1.8;
        color: #444;
    }
    
    .final-cta {
        text-align: center;
        margin: 30px 0;
    }
    
    .final-cta .tip-box {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Tecrübe paylaşım bölümü */
    .share-experience {
        display: flex;
        align-items: center;
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .share-icon {
        width: 60px;
        height: 60px;
        background: rgba(195, 26, 37, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
    }
    
    .share-icon i {
        color: #c31a25;
        font-size: 25px;
    }
    
    .share-content {
        flex: 1;
    }
    
    .share-content p {
        margin: 0 0 15px 0;
        font-size: 15px;
    }
    
    .share-button {
        display: inline-block;
        background: #c31a25;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .share-button i {
        margin-left: 5px;
        transition: all 0.3s ease;
    }
    
    .share-button:hover {
        background: #8c0e15;
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(195, 26, 37, 0.2);
    }
    
    .share-button:hover i {
        transform: translateX(5px);
    }
    
    /* Mobil uyumlu düzenlemeler */
    @media screen and (max-width: 768px) {
        .social-grid {
            grid-template-columns: 1fr;
        }
        
        .share-experience {
            flex-direction: column;
            text-align: center;
        }
        
        .share-icon {
            margin: 0 auto 15px;
        }
        
        .share-button {
            display: block;
            width: 100%;
            text-align: center;
        }
    }