İletişim
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f0f4f8;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.contact-box {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
text-align: center;
}
.contact-box h1 {
margin-bottom: 24px;
color: #333;
}
.contact-item {
margin: 20px 0;
}
.contact-item a {
text-decoration: none;
color: #007BFF;
font-size: 18px;
transition: color 0.3s ease;
}
.contact-item a:hover {
color: #0056b3;
}
.icon {
margin-right: 8px;
}