* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    overflow-x: hidden;
    position: relative;
}

header.hero {
    text-align: center;
    background: linear-gradient(to right, #FF416C, #FF4B2B);
    padding: 80px 20px;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 20px;
}

header.hero .logo {
    max-width: 120px;
    margin-bottom: 20px;
}

header.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header.hero .tagline {
    font-size: 18px;
    color: #fff;
}

.about, .contact {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FF4B2B;
    border-right: 4px solid #FF416C;
}

.about h2, .contact h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about p, .contact p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.contact a {
    color: #FF416C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact a:hover {
    color: #FF4B2B;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    margin-top: 40px;
    border-top: 2px solid #FF4B2B;
}

/* Hareketli Top */
.bouncing-ball {
    width: 30px;
    height: 30px;
    background-color: #FF4B2B;
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: 0;
    animation: bounce 5s ease-in-out infinite;
}

/* Hareketli Top için Animasyon Efektleri */
@keyframes bounce {
    0% { left: 0; top: 10%; }
    25% { left: 25%; top: 50%; }
    50% { left: 50%; top: 10%; }
    75% { left: 75%; top: 50%; }
    100% { left: 100%; top: 10%; }
}
