/* Modern AI Tools Styles */

/* Global Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --danger-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-light: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Archive Page Styles */
.ai-tools-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.ai-tools-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.ai-tools-header * {
    position: relative;
    z-index: 2;
}

.ai-tools-header .page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.ai-tools-header .page-description {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Category Filter */
.ai-category-filter {
    margin-bottom: 40px;
    text-align: center;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

.category-btn:hover,
.category-btn.active {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.category-btn .count {
    margin-left: 8px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.8rem;
}

/* AI Tools Grid */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ai-tool-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.ai-tool-card:hover::before {
    transform: scaleX(1);
}

.ai-tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

.ai-tool-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.ai-tool-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.ai-tool-card:hover .ai-tool-logo {
    transform: scale(1.05);
}

.ai-tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-tool-logo.placeholder {
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
}

.ai-tool-title-section {
    flex: 1;
}

.ai-tool-title {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.ai-tool-title a {
    color: #2d3748;
    text-decoration: none;
    transition: var(--transition);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-tool-title a:hover {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-tool-content {
    flex: 1;
    margin-bottom: 25px;
}

.ai-tool-excerpt {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ai-tool-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-badge.pricing-free {
    background: var(--success-gradient);
    color: white;
}

.pricing-badge.pricing-paid {
    background: var(--danger-gradient);
    color: white;
}

.pricing-badge.pricing-freemium {
    background: var(--warning-gradient);
    color: white;
}

.pricing-text {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 600;
}

.ai-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #667eea;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.category-tag:hover {
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.ai-tool-footer {
    margin-top: auto;
}

.ai-tool-actions {
    display: flex;
    gap: 12px;
}

/* Ana ve İkincil Buton Stilleri */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white; /* Tüm .btn-primary butonlarının yazı rengini beyaz yapar */
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: var(--glass-bg);
    color: #4a5568;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #4a5568;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* AI Araçları Kartındaki butonlara özel ayar */
.ai-tool-actions a.btn-primary {
    color: white; /* Kırmızı rengi ezecek daha spesifik bir kural */
}

/* Star Rating */
.ai-rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.star {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.star.empty {
    color: #e2e8f0;
}

.star.half {
    background: linear-gradient(90deg, #ffd700 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    margin-left: 8px;
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
}

/* Single AI Tool Styles */
.ai-tool-single-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.ai-tool-single-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
}

.ai-tool-main-info {
    display: flex;
    gap: 25px;
    flex: 1;
}

.ai-tool-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.ai-tool-logo-large:hover {
    transform: scale(1.05);
}

.ai-tool-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-tool-header-content h1 {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ai-tool-rating {
    margin-bottom: 20px;
}

.ai-tool-rating .ai-rating-stars {
    font-size: 20px;
}

.ai-tool-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.ai-tool-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
}

.ai-tool-description {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #4a5568;
}

.ai-tool-features h3,
.ai-tool-pros h3,
.ai-tool-cons h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-left: 35px;
}

.ai-tool-features h3::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.ai-tool-pros h3::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.ai-tool-cons h3::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.features-list,
.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.features-list li,
.pros-list li,
.cons-list li {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    padding-left: 45px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.features-list li:hover,
.pros-list li:hover,
.cons-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.8);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.features-list li {
    border-left-color: #48bb78;
}

.pros-list li::before {
    content: "+";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #38a169;
    font-weight: bold;
    font-size: 20px;
}

.pros-list li {
    border-left-color: #38a169;
}

.cons-list li::before {
    content: "−";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #e53e3e;
    font-weight: bold;
    font-size: 20px;
}

.cons-list li {
    border-left-color: #e53e3e;
}

.ai-tool-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.ai-tool-final-cta {
    background: var(--primary-gradient);
    color: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.ai-tool-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.ai-tool-final-cta h3 {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.ai-tool-final-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.ai-tool-final-cta .btn {
    position: relative;
    z-index: 2;
}

/* Related Tools */
.related-ai-tools {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
}

.related-ai-tools h3 {
    margin-bottom: 30px;
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.related-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-tool-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.related-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.8);
}

.related-tool-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-tool-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.related-tool-info h4 a {
    color: #2d3748;
    text-decoration: none;
    transition: var(--transition);
}

.related-tool-info h4 a:hover {
    color: #667eea;
}

.related-tool-info p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.related-tool-action .btn-primary {
    color: white !important; /* Bu butona özel olarak yazı rengini beyaz yapar */
}

/* Pagination */
.ai-tools-pagination {
    text-align: center;
    margin-top: 50px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin: 0 6px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #4a5568;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-weight: 600;
    min-width: 48px;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* No Tools Found */
.no-tools-found {
    text-align: center;
    padding: 80px 40px;
    color: #718096;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
}

.no-tools-found h3 {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1.5rem;
    font-weight: 700;
}

.no-tools-found p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Loading States */
.btn.loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .ai-tool-pros-cons {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ai-tools-header {
        padding: 40px 30px;
    }
    
    .ai-tools-header .page-title {
        font-size: 2.2rem;
    }
    
    .ai-tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-tool-single-header {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }
    
    .ai-tool-main-info {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-tool-content {
        padding: 30px;
    }
    
    .category-buttons {
        justify-content: center;
        padding: 15px;
    }
    
    .ai-tool-actions {
        flex-direction: column;
    }
    
    .related-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-tool-final-cta {
        padding: 40px 30px;
    }
    
    .ai-tool-final-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .ai-tools-header {
        padding: 30px 20px;
    }
    
    .ai-tools-header .page-title {
        font-size: 1.8rem;
    }
    
    .ai-tool-card {
        padding: 25px;
    }
    
    .ai-tool-content {
        padding: 25px;
    }
    
    .ai-tool-single-header {
        padding: 25px;
    }
    
    .ai-tool-header-content h1 {
        font-size: 2rem;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --glass-bg: rgba(0, 0, 0, 0.25);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
    
    .ai-tool-title a {
        color: #e2e8f0;
    }
    
    .ai-tool-excerpt {
        color: #a0aec0;
    }
    
    .ai-tool-header-content h1 {
        color: #f7fafc;
    }
    
    .ai-tool-description {
        color: #cbd5e0;
    }
    
    .ai-tool-features h3,
    .ai-tool-pros h3,
    .ai-tool-cons h3 {
        color: #f7fafc;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}
/* Sidebar'da Son Blog Yazıları Bölümü Stilleri */
.latest-posts-widget {
    margin-top: 40px;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
}

.latest-posts-widget h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.latest-posts-grid {
    display: grid;
    gap: 20px;
}

.post-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.post-image-container {
    width: 100%;
    height: 150px; /* Görsel yüksekliğini ayarlayabilirsiniz */
    overflow: hidden;
}

.post-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

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

.post-content {
    padding: 20px;
}

.post-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h4 a {
    color: #2d3748;
    text-decoration: none;
    transition: var(--transition);
}

.post-content h4 a:hover {
    color: #667eea;
}

.post-content p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .latest-posts-widget h3 {
        color: #f7fafc;
    }
    
    .post-card {
        background: rgba(0, 0, 0, 0.25);
    }
    
    .post-content h4 a {
        color: #e2e8f0;
    }
    
    .post-content p {
        color: #a0aec0;
    }
}

/* Mobil görünüm için responsive düzenleme */
@media (max-width: 768px) {
    .latest-posts-widget {
        margin-top: 20px;
        padding: 20px;
    }
}

/* Container yapısı ile sayfa kenar boşlukları ekleme */
.container {
    width: 100%;
    max-width: 1200px; /* İçeriğin en fazla ne kadar genişleyeceğini belirler */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px; /* Yanlardan 15px boşluk bırakır */
    padding-right: 15px; /* Yanlardan 15px boşluk bırakır */
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}