   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: #b22222;
    padding: 20px;
    text-align: center;
}

.header h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.header .slogan {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.content {
    background-color: #fff;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #b22222;
    font-size: 28px;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content ul {
    list-style: none;
    margin-bottom: 20px;
}

.content ul li {
    background-color: #b22222;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.demo-link {
    color: #b22222;
    text-decoration: underline;
}

.demo-link:hover {
    color: #8b0000;
}

.cta-button {
    display: inline-block;
    background-color: #b22222;
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #8b0000;
}

.footer {
    background-color: #333;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer p {
    color: #fff;
    font-size: 14px;
}

.footer .footer-link {
    color: #b22222;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

.footer .footer-link:hover {
    color: #8b0000;
}


/* Resim Konteyneri Stili */
.image-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Resmin Uyumlu Stili */
.center-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Hafif kenar ovalleştirme */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

/* Küçük Ekranlar için Medya Sorgusu (Mobil) */
@media (max-width: 768px) {
    .image-container {
        padding: 10px;
    }

    .center-image {
        max-width: 90%; /* Mobilde biraz daha küçük gösterim */
    }
}

