* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #dceefc; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px 20px;
}
.container { max-width: 700px; width: 100%; text-align: center; }
.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 59, 92, 0.2); 
    background-color: transparent;
    margin-bottom: 30px;
}
.image-wrapper img { width: 100%; height: auto; display: block; }

/* İletişim Butonları Tasarımı */
.contact-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #1a3b5c; 
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #1a3b5c;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 59, 92, 0.1);
}
.contact-link svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: currentColor;
    transition: all 0.3s ease;
}
.contact-link:hover {
    background-color: #1a3b5c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(26, 59, 92, 0.25);
}
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (max-width: 600px) {
    .contact-section { flex-direction: column; align-items: stretch; }
    .contact-link { justify-content: center; }
    
}