/* Temel Stil Ayarları */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #031827;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: left;
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  margin-right: 20px;
  margin-left: 20px;
  color: #fff;
}

.logo {
  font-size: 32px;
  color: #fff;
  font-weight: 750;
}

.phone {
  margin-right: 24px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 15px;
}

/* Sidebar Stilleri */
.sidebar {
  position: absolute;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  overflow-y: auto;
  color: #011f33;
}

.sidebar ul {
  padding: 0;
  list-style: none;
}

.sidebar ul li {
  padding: 15px;
  text-align: center;
}

.sidebar ul li a {
  text-decoration: none;
  color: #011f33;
  display: block;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #011c33;
}
.hero {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 200px 0;
  background-image: url("/images/beyaz-esya-bakimi.jpg");
  background-position:center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fff; /* Yeni Ana Renk */
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

article img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-button:hover {
  background-color: #011f33;
  color: #fff;
}

/* Hizmetler Bölümü Stilleri */
.services {
  background-color: #fff;
  padding: 50px;
  text-align: left;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.service {
  margin-bottom: 40px;
}

.service img {
  max-width: 100px;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.service p {
  font-size: 18px;
}

/* Footer Stilleri */
footer {
  background-color: #011f33; /* Yeni Ana Renk */
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
/* Dropdown Stilleri */
.dropdown {
  display: block;
  width: 100%;
}

.dropdown-btn {
  background-color: #031827;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 1.1em;
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: relative;
  overflow: hidden;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #011f33;
}

.dropdown-content a:hover {
  color: #031827;
}

.dropdown:hover .dropdown-content {
  display: block;
}
