* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #2d2d2d;
    color: #ffffff;
    text-align: center;
}

header {
    padding: 50px;
    background-color: #2d2d2d; /* Logo arkaplanı ile aynı renk */
}

header .logo img {
    width: 150px;
    height: auto;
}

h1, h2, h3 {
    color: #ffffff;
}

section {
    padding: 50px 20px;
}

#services {
    background-color: #3b3b3b;
}

.service {
    margin: 20px 0;
}

.service i {
    font-size: 40px;
    color: #f1c40f;
    margin-bottom: 10px;
}

#projects .projects-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#projects .projects-gallery img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

#contact {
    background-color: #3b3b3b;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #f1c40f;
    margin: 0 10px;
    font-size: 30px;
    text-decoration: none;
}

.social-links a:hover {
    color: #ffffff;
}

footer {
    padding: 20px;
    background-color: #2d2d2d;
    color: #ffffff;
    font-size: 14px;
}
