/* Genel Stil Ayarları */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f2f4f7;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 700px;
}

h1 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    color: #333;
    margin-top: 30px;
    font-size: 1.5em;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1em;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

li a {
    color: #007bff;
    text-decoration: none;
}

li a:hover {
    text-decoration: underline;
}

/* Responsive Stil Ayarları */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        width: 90%;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.3em;
    }

    p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.8em;
    }

    .container {
        padding: 10px;
        width: 95%;
    }
}