/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E9D1E5; /* Belirttiğiniz zemin rengi */
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
    padding: 20px;
}

/* Kapsayıcı Konteyner */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.7); /* İçeriğin okunması için hafif şeffaf beyaz zemin */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

/* Logo */
.header {
    margin-bottom: 30px;
}

.logo {
    max-width: 250px;
    height: auto;
}

/* Başlıklar */
.title-section h1 {
    font-size: 1.5rem;
    color: #8e4483; /* Logodaki mürdüm tonu */
    margin-bottom: 10px;
    font-weight: 700;
}

.title-section h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.title-section h3 {
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 2px solid #8e4483;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

/* Metin İçeriği */
.content {
    text-align: justify;
    margin-bottom: 40px;
}

.salutation {
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

p {
    margin-bottom: 15px;
}

/* İmza Bölümü */
.signature {
    margin-top: 50px;
    text-align: right;
    line-height: 1.4;
}

.signature .name {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Gündem Bölümü */
.agenda {
    margin-top: 60px;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #8e4483;
}

.agenda h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #8e4483;
}

.agenda ul {
    list-style: none;
}

.agenda li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.agenda li span {
    font-weight: 700;
    margin-right: 10px;
    color: #8e4483;
    min-width: 35px;
}

/* Responsive Ayarlar */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .title-section h1 {
        font-size: 1.2rem;
    }
    
    .signature {
        text-align: center;
    }
    
    .content {
        text-align: left;
    }
}