/* Sağlık Turizmi Özel Stilleri */

/* Hero Section Styles */
.saglik-turizmi-hero {
    background: linear-gradient(135deg, rgba(74, 0, 143, 0.9), rgba(255, 87, 51, 0.8));
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.saglik-turizmi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/medical-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.saglik-turizmi-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.saglik-turizmi-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saglik-turizmi-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(53, 53, 53, 0.8), rgba(36, 5, 69, 0.7));
}

.saglik-turizmi-hero .container {
    z-index: 2;
}

.saglik-turizmi-hero .hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.saglik-turizmi-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Service Cards */
.saglik-turizmi-card {
    height: 400px;
    perspective: 1000px;
    margin-bottom: 30px;
    cursor: pointer;
}

.saglik-turizmi-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.saglik-turizmi-card:hover .card-inner {
    transform: rotateY(180deg);
}

.saglik-turizmi-card .card-front,
.saglik-turizmi-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.saglik-turizmi-card .card-front {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(74, 0, 143, 0.1);
}

.saglik-turizmi-card .card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    color: white;
    text-align: center;
}

.saglik-turizmi-card .service-icon {
    font-size: 4rem;
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.saglik-turizmi-card .service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.saglik-turizmi-card .price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, #ff5733, #ff7849);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.saglik-turizmi-card .service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
}

.saglik-turizmi-card .service-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.saglik-turizmi-card .service-list li:hover {
    transform: translateX(5px);
}

.saglik-turizmi-card .service-list li:before {
    content: '✓';
    margin-right: 10px;
    color: #00ff87;
    font-weight: bold;
}

.saglik-turizmi-card .price-comparison {
    margin-top: auto;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.saglik-turizmi-card .turkey-price {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #00ff87;
    margin-bottom: 5px;
}

.saglik-turizmi-card .europe-price {
    display: block;
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-step {
    position: relative;
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(74, 0, 143, 0.1);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a008f, #6f42c1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.process-step:hover::before {
    transform: translateX(0);
}

.process-step:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(74, 0, 143, 0.15);
}

.process-step .step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(74, 0, 143, 0.3);
    border: 4px solid white;
}

.process-step .step-icon {
    font-size: 3.5rem;
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0 20px 0;
}

.process-step .step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step .step-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Advantage List */
.advantage-list {
    padding: 20px 0;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(74, 0, 143, 0.1);
    border-left-color: #4a008f;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(74, 0, 143, 0.2);
}

.advantage-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.advantage-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* City Cards */
.city-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.city-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.city-card .city-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.city-card .city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover .city-image img {
    transform: scale(1.1);
}

.city-card .city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.8) 100%);
}

.city-card .city-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
}

.city-card .city-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.city-card .city-hospitals {
    font-size: 0.95rem;
    opacity: 0.9;
}

.city-card .city-specialties {
    padding: 25px;
}

.city-card .city-specialties h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.city-card .city-specialties ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-card .city-specialties li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    transition: all 0.3s ease;
}

.city-card .city-specialties li:before {
    content: '▶';
    color: #4a008f;
    font-size: 0.8rem;
    margin-right: 10px;
}

.city-card .city-specialties li:hover {
    color: #4a008f;
    transform: translateX(5px);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(74, 0, 143, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(74, 0, 143, 0.1);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.testimonial-card .testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-card .author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 4px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card .author-info h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-card .author-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card .blog-content {
    padding: 30px;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-card .blog-category {
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card .blog-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.blog-card .blog-title {
    margin-bottom: 15px;
}

.blog-card .blog-title a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card .blog-title a:hover {
    color: #4a008f;
}

.blog-card .blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 15px 40px rgba(74, 0, 143, 0.1);
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    border: none;
    padding: 25px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 25px;
    background: #f8f9fa;
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4a008f 0%, #6f42c1 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/medical-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-light {
    background: white;
    color: #4a008f;
    border-color: white;
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: #4a008f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.cta-guarantee {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .saglik-turizmi-hero .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .saglik-turizmi-hero .hero-title {
        font-size: 3rem;
    }
    
    .saglik-turizmi-card {
        height: 350px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .advantage-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .saglik-turizmi-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .saglik-turizmi-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Mobile'de card flip efektini kaldır */
    .saglik-turizmi-card {
        height: auto;
        perspective: none;
    }
    
    .saglik-turizmi-card .card-inner {
        transform: none !important;
        transition: none;
    }
    
    .saglik-turizmi-card .card-back {
        display: none;
    }
    
    .saglik-turizmi-card .card-front {
        position: static;
        height: auto;
        min-height: 300px;
        padding: 25px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto 20px auto;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .process-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: -20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .blog-card .blog-content {
        padding: 25px;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
    
    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .saglik-turizmi-hero .hero-title {
        font-size: 2rem;
    }
    
    .saglik-turizmi-card .card-front {
        min-height: 250px;
        padding: 20px;
    }
    
    .saglik-turizmi-card .service-title {
        font-size: 1.2rem;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .city-card .city-image {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .blog-card .blog-content {
        padding: 20px;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Animations */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #4a008f, #6f42c1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #6f42c1, #4a008f);
}

/* Görsel Placeholder ve Optimizasyon Stilleri */
.hero-image, 
.city-image img,
.author-image {
    object-fit: cover;
    object-position: center;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.hero-image {
    opacity: 0.8;
    filter: brightness(0.7) contrast(1.1);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.city-image img {
    height: 200px;
    width: 100%;
}

/* Görsel yükleme durumu */
img[src*="placeholder"] {
    background: linear-gradient(45deg, #f0f2f5 25%, #e4e6ea 25%, #e4e6ea 50%, #f0f2f5 50%, #f0f2f5 75%, #e4e6ea 75%);
    background-size: 16px 16px;
}

/* Content Section Styling */
.main-content {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Intro Story Section */
.intro-story {
    padding: 100px 0;
}

.intro-story h2 {
    color: #4a008f;
    margin-bottom: 30px;
}

.intro-story .lead {
    color: #ff5733;
    font-size: 1.4rem;
    font-weight: 500;
}

.intro-story p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Problem Solution Section */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.problem-solution h2 {
    color: #4a008f;
    margin-bottom: 50px;
}

.story-content .lead {
    background: linear-gradient(135deg, rgba(255, 87, 51, 0.1), rgba(74, 0, 143, 0.05));
    padding: 30px;
    border-left: 4px solid #ff5733;
    border-radius: 10px;
    font-style: italic;
    color: #333;
    font-size: 1.3rem;
}

.story-content p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(74, 0, 143, 0.1), rgba(255, 87, 51, 0.05));
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid rgba(74, 0, 143, 0.1);
}

.highlight-box h4 {
    color: #4a008f;
    font-weight: 600;
}

.highlight-box p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Main CTA Section */
.main-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #4a008f 0%, #6610c4 50%, #ff5733 100%);
    position: relative;
    overflow: hidden;
}

.main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/medical-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.main-cta .container {
    position: relative;
    z-index: 2;
}

.main-cta h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
}

.main-cta .btn-light {
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.main-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

.main-cta .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-story, .problem-solution {
        padding: 60px 0;
    }
    
    .main-cta {
        padding: 80px 0;
    }
    
    .intro-story .lead {
        font-size: 1.2rem;
    }
    
    .story-content .lead {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .highlight-box {
        padding: 25px;
    }
    
    .main-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

.content-article {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.content-article h1 {
    color: #4a008f;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #ff5733;
    padding-bottom: 15px;
}

.content-article h2 {
    color: #4a008f;
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.content-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #4a008f, #ff5733);
    border-radius: 2px;
}

.content-article h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-article h4 {
    color: #555;
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-article p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.content-article li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.content-article strong, .content-article b {
    color: #4a008f;
    font-weight: 600;
}

.content-article em {
    font-style: italic;
    color: #ff5733;
}

.content-article blockquote {
    background: linear-gradient(135deg, rgba(74, 0, 143, 0.05), rgba(255, 87, 51, 0.05));
    border-left: 4px solid #4a008f;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    color: #555;
}

.content-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.content-article table th {
    background: linear-gradient(135deg, #4a008f, #6610c4);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.content-article table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #666;
}

.content-article table tr:hover {
    background-color: rgba(74, 0, 143, 0.02);
}

.content-article table tr:last-child td {
    border-bottom: none;
}

/* Code styling */
.content-article code {
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 4px;
    color: #e83e8c;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
}

.content-article pre {
    background: #2d3748;
    color: #cbd5e0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}

.content-article pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Links */
.content-article a {
    color: #4a008f;
    text-decoration: none;
    border-bottom: 1px dotted #4a008f;
    transition: all 0.3s ease;
}

.content-article a:hover {
    color: #ff5733;
    border-bottom-color: #ff5733;
}

/* Images */
.content-article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive content */
@media (max-width: 768px) {
    .content-article {
        padding: 30px 25px;
        margin: 20px;
        border-radius: 10px;
    }
    
    .content-article h1 {
        font-size: 2rem;
    }
    
    .content-article h2 {
        font-size: 1.6rem;
        margin-top: 35px;
    }
    
    .content-article h3 {
        font-size: 1.3rem;
    }
    
    .main-content {
        padding: 50px 0;
    }
    
    .content-article table {
        font-size: 0.9rem;
    }
    
    .content-article table th,
    .content-article table td {
        padding: 8px 10px;
    }
}

/* Mobil görsel optimizasyonları */
@media (max-width: 768px) {
    .hero-image {
        height: 300px;
    }
    
    .city-image img {
        height: 150px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
}
