/* Reset ve genel stil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f4f4f4;
  scroll-behavior: smooth;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 64px;
  width: auto;
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  color: #1b5e20;
  font-weight: bold;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: 3rem;
  color: #1b5e20;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  text-decoration: none;
  background-color: #1b5e20;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #145418;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1b5e20;
}

.contact p {
  margin-bottom: 10px;
}
