* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.cretos-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e9ecef;
}

.cretos-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  height: 80px; /* Sabit yükseklik */
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Logo container düzeltmesi */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  display: block;
}

/* Navigation düzeltmeleri */
.cretos-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cretos-header nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cretos-header nav a:hover {
  color: #8b4513;
  background: #f8f9fa;
}

/* Hero */
.cretos-hero {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4rem 0;
  text-align: center;
}

.cretos-hero h1 {
  font-size: 3rem;
  color: #8b4513;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Product */
.cretos-product {
  padding: 4rem 0;
  background: #fff;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-details h2 {
  color: #8b4513;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #8b4513;
}

.feature i {
  font-size: 2rem;
  color: #8b4513;
  min-width: 50px;
}

.feature h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #666;
  margin: 0;
}

/* Specs Table */
.product-specs h3 {
  color: #8b4513;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
}

.specs-table td {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #333;
  background: #e9ecef;
}

.specs-table td:last-child {
  color: #8b4513;
  font-weight: 500;
}

/* Why CRETOS */
.why-cretos {
  padding: 4rem 0;
  background: #f8f9fa;
}

.why-cretos h2 {
  text-align: center;
  color: #8b4513;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit i {
  font-size: 3rem;
  color: #8b4513;
  margin-bottom: 1rem;
}

.benefit h4 {
  color: #333;
  margin-bottom: 1rem;
}

.benefit p {
  color: #666;
}

/* Contact */
.cretos-contact {
  padding: 4rem 0;
  background: #fff;
}

.contact-card {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-btn.phone {
  background: #25d366;
  color: white;
}

.contact-btn.email {
  background: white;
  color: #8b4513;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info p {
  opacity: 0.8;
  margin: 0;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cretos-hero h1 {
    font-size: 2rem;
  }

  .product-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 250px;
    justify-content: center;
  }

  .cretos-header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .cretos-header nav a {
    margin: 0 10px;
  }
}
