/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
  }

  header, section, footer {
    padding: 20px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  nav ul li a {
    text-decoration: none;
    color: #333;
  }

  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
  }

  .highlight-box {
    margin-bottom: 30px;
    text-align: center;
  }

  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }

    .highlight-box {
      width: 100%;
      margin-bottom: 20px;
    }

    header, section, footer {
      padding: 10px;
    }
  }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #f8f8f8;
  padding: 20px 0;
}

header h1 {
  text-align: center;
  font-size: 28px;
  color: #444;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #e67e22;
}

/* Hero */
.hero {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #e67e22;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #d35400;
}

/* Highlights */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 50px 0;
}

.highlight-box {
  flex: 1 1 250px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* Page Headers */
.page-header {
  background-color: #e67e22;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

/* About Content */
.about-content {
  padding: 50px 0;
}

.about-content h3 {
  margin-top: 30px;
  color: #e67e22;
}

.about-content p {
  margin-top: 10px;
  font-size: 16px;
}

/* Product List */
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 0;
  justify-content: center;
}

.product-card {
  flex: 1 1 250px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card img {
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
}

.product-card h3 {
  margin-top: 15px;
  color: #e67e22;
}

.product-card p {
  margin-top: 10px;
  font-size: 14px;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Blog Content */
.blog-content {
  padding: 50px 0;
}

.blog-post {
  margin-bottom: 40px;
}

.blog-post h3 {
  color: #e67e22;
  margin-bottom: 15px;
}

.blog-post p {
  font-size: 16px;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 50px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info, .contact-form {
  flex: 1 1 400px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  background: #e67e22;
  color: #fff;
  padding: 12px;
  border: none;
  b
.container p {
	text-align: center;
}
.container p {
	text-align: center;
	font-weight: bold;

}
