/* ====== Modern Reset & Base Styles ====== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ====== Modern Header (Mobil Uyumlu) ====== */
header {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

header .logo h1 {
  margin: 0;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
}

header .contact-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

header .contact-info a {
  text-decoration: none;
  color: #3498db;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

header .contact-info a:hover {
  color: #2980b9;
}

/* ====== Navigation - Mobil Hamburger Menu ====== */
nav {
  width: 100%;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #3498db;
  color: white;
}

/* Mobil Responsive için Media Query */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  header .logo h1 {
    font-size: 1.3rem;
  }

  header .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    display: block;
    text-align: center;
  }
}

/* ====== Hero Section (Modern & Responsive) ====== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  color: white;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  flex: 1.5; /* Daha fazla alan kaplar */
  text-align: center;
  min-width: 300px;
  overflow: visible; /* Taşmayı göster */
}

.hero-image img {
  max-width: 130%; /* Biraz küçültüldü */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Mobil Responsive Hero */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ====== Services Section (Modern Grid) ====== */
.services {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
  position: relative;
}

.services h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.service-item {
  background-color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-item i {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-item:hover i {
  transform: scale(1.1);
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
}

.service-item p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Mobil Responsive Services */
@media (max-width: 768px) {
  .services h2 {
    font-size: 1.8rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

    .about-short {
      background-color: #f0f8ff;
      padding: 4rem 0;
    }

    .about-short .container {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
      color: #2c3e50;
    }

    .about-content p {
      color: #555;
    }

    .about-image {
      flex: 1;
      text-align: center;
    }

    .about-image img {
      max-width: 50%; /* Kuleli logosu %50 küçültüldü */
      height: auto;
      border-radius: 8px;
    }

    .why-choose-us {
      padding: 4rem 0;
    }

    .why-choose-us h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      color: #2c3e50;
    }

    .why-choose-us ul {
      list-style: none;
      padding: 0;
      text-align: center;
    }

    .why-choose-us li {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: #555;
    }

    .why-choose-us li i {
      font-size: 1.2rem;
      color: #3498db;
    }

    .contact-short {
      background-color: #f0f8ff;
      padding: 4rem 0;
    }

    .contact-short h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      color: #2c3e50;
    }

    .contact-short .contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .contact-short .contact-info a {
      text-decoration: none;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .contact-form button {
      background-color: #3498db;
      color: white;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #2980b9;
    }

/* ====== Modern Buttons ====== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

    footer {
      background-color: #2c3e50;
      color: white;
      text-align: center;
      padding: 1rem 0;
    }
    .service-detail {
      margin-top: 70px;
    }
    .blog-post {
      margin: 20px 0;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      background-color: #f9f9f9;
    }
    
    .blog-post h3 {
      font-size: 1.5em;
      margin-bottom: 10px;
    }
    
    .blog-post p {
      font-size: 1em;
      margin-bottom: 15px;
      color: #555;
    }
    
    .blog-post .btn {
      display: inline-block;
      padding: 10px 15px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
    }
    
    .blog-post .btn:hover {
      background-color: #0056b3;
    }
    .since-2008 {
      background: linear-gradient(135deg, #007bff, #00d4ff);
      color: #fff;
      text-align: center;
      padding: 10px 5px;
      margin: 10px 0;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .since-2008 .highlight-text {
      font-size: 2em;
      font-weight: 700;
      margin-bottom: 5px;
    }
    
    .since-2008 .highlight-text span {
      color: #ffeb3b;
      font-style: italic;
      font-size: 1em;
    }
    .since-20088 {
      color: #ffeb3b;
      font-style: italic;
      font-size: 1em;
    }
    
    .since-2008 p {
      font-size: 1.2em;
      line-height: 1.6;
      margin: 0 auto;
      max-width: 600px;
    }
/* ====== Modern 2008 Badge (Mobil Uyumlu) ====== */
.stamp {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 120px;
  height: 120px;
  z-index: 998;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.stamp .circle {
  position: relative;
  width: 100%;
  height: 100%;
  border: 4px solid #e74c3c;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
  padding: 10px;
}

.stamp .top-text {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stamp .middle-text {
  font-size: 11px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}

/* Mobil için Stamp Responsive */
@media (max-width: 768px) {
  .stamp {
    width: 90px;
    height: 90px;
    top: 70px;
    right: 10px;
  }

  .stamp .circle {
    border-width: 3px;
  }

  .stamp .middle-text {
    font-size: 8px;
  }
}
.padbot{
  padding-bottom: 22;
}
.padtop{
  height:55px;
}
.itali{
  font-style: italic;
}
.team-info {
  text-align: center;
  margin-top: 40px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.team-member {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.team-photo img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #333;
}

.team-member .title {
  font-size: 0.9em;
  color: #666;
}

.team-member .year {
  font-size: 0.8em;
  color: #999;
  margin-top: 10px;
}
.slideshow-container {
  position: relative;
  max-width: 130%; /* Biraz küçültüldü */
  width: 130%;
  height: auto;
  overflow: visible;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
}

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

.fade {
  animation-name: fadeEffect;
  animation-duration: 1.5s;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}


/* ====== Services Page Styles ====== */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: white;
  margin-top: 0;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.services-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-page {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-highlight {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8f0 100%);
  border: 3px solid #ff6b9d;
}

.service-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c94b7d 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(255, 107, 157, 0.4);
}

.service-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
}

.service-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.service-content h4 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #667eea;
  font-family: 'Montserrat', sans-serif;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-list li {
  padding: 0.8rem 0;
  font-size: 1.05rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-list li i {
  color: #667eea;
  font-size: 1.2rem;
}

.service-highlight-box {
  background: linear-gradient(135deg, #fff9e6 0%, #ffedd5 100%);
  border-left: 4px solid #fbbf24;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.service-highlight-box p {
  margin: 0;
  color: #92400e;
  font-size: 1.05rem;
}

.btn-service {
  margin-top: 1.5rem;
  display: inline-block;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background: white;
  color: #667eea;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  font-weight: 700;
}

.btn-cta:hover {
  background: #f0f0f0;
  color: #764ba2;
}

/* Mobil Responsive Services */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero p {
    font-size: 1rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

/* ====== Blog Page Styles ====== */
.blog-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: white;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.blog-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.blog-page {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-content {
  padding: 2.5rem;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: #888;
  font-size: 0.95rem;
}

.blog-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
}

.blog-excerpt {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.btn-read-more {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Full Content */
.blog-full-content {
  padding: 0 2.5rem 2.5rem;
  border-top: 2px solid #e5e7eb;
  margin-top: 2rem;
  padding-top: 2rem;
}

.blog-full-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #667eea;
  font-family: 'Montserrat', sans-serif;
}

.blog-full-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.blog-full-content ul {
  margin: 1rem 0 2rem 2rem;
}

.blog-full-content ul li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.btn-close-post {
  background: #f3f4f6;
  color: #667eea;
  padding: 0.8rem 2rem;
  border: 2px solid #667eea;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.btn-close-post:hover {
  background: #667eea;
  color: white;
}

/* Placeholder Card */
.blog-card-placeholder {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px dashed #667eea;
}

.placeholder-content {
  padding: 3rem;
  text-align: center;
}

.placeholder-content h3 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.placeholder-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.placeholder-content ul li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  color: #555;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-content h2 {
    font-size: 1.5rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-full-content {
    padding: 1.5rem;
  }
}

/* ====== Modern Instagram/Medium Style Blog ====== */
.blog-card-modern {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.blog-card-modern:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta-modern {
  display: flex;
  gap: 1.5rem;
  color: #666;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.blog-title-modern {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.blog-image-modern {
  width: 100%;
  max-width: 600px;
  height: 500px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card-modern:hover .blog-image-modern img {
  transform: scale(1.02);
}

.blog-content-modern {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin: 2rem 0;
}

.blog-content-modern p {
  margin: 1.5rem 0;
  text-align: justify;
}

.blog-content-modern h2,
.blog-content-modern h3 {
  font-family: 'Montserrat', sans-serif;
  color: #667eea;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-content-modern h2 {
  font-size: 1.6rem;
}

.blog-content-modern h3 {
  font-size: 1.3rem;
  color: #764ba2;
}

.blog-content-modern ul,
.blog-content-modern ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-content-modern li {
  margin: 0.75rem 0;
  line-height: 1.7;
}

.blog-content-modern strong {
  color: #1a1a1a;
  font-weight: 600;
}

.blog-content-modern img {
  max-width: 600px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-content-modern a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 2px solid #667eea;
  transition: all 0.3s ease;
}

.blog-content-modern a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

.blog-footer {
  margin-top: 3rem;
}

.blog-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  margin: 2rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-card-modern {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .blog-title-modern {
    font-size: 1.5rem;
  }

  .blog-content-modern {
    font-size: 1rem;
  }

  .blog-content-modern h2 {
    font-size: 1.3rem;
  }

  .blog-content-modern h3 {
    font-size: 1.1rem;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
