body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.top-bar {
    background-color: #000;
    color: white;
    padding: 10px 0;
    font-size: 0.9em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar .social-media a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector button {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 0.9em;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.main-header .header-left {
    display: flex;
    align-items: center;
}

.main-header .logo-container {
    display: flex;
    align-items: center;
}

.main-header .logo-container img {
    height: 40px; /* Logo boyutu */
    margin-left: 10px;
}

.main-header .logo-container h1 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.main-header .nav-menu {
    display: flex;
    gap: 20px;
}

.main-header .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hero {
    background: url('images/public.jpeg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
    max-width: 500px;
    margin: 0;
    border: 11px solid #001f3f;
}

.hero-content h3 {
    color: #001f3f;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.hero-content h2 {
    color: #333;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-content p {
    color: #666;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #001f3f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.about, .services, .contact {
    padding: 50px 0;
    text-align: center;
    background-color: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about img, .services img, .contact img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-content, .services-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    max-width: 500px;
    border: 11px solid #001f3f;
}

.about-content {
    left: 10%;
}

.services-content {
    right: 10%;
}

.about-content h2, .services-content h2 {
    color: #001f3f;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.about-content p, .services-content p, .services-content ul {
    color: #666;
    margin-bottom: 20px;
}

.services-content ul {
    list-style-type: none;
    padding: 0;
}

.services-content ul li {
    margin-bottom: 10px;
}

.contact {
    background-color: #050910; /* Gece yarısı rengi */
    color: white;
}

.contact .contact-details p {
    margin: 10px 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}