* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Variables */
:root {
  --primary-blue: #0066CC;
  --primary-orange: #FF6B35;
  --dark-blue: #003366;
  --light-blue: #E6F2FF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-blue);
  border-radius:10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-orange);
  border-radius:10px;
}
.logo-img{
  border-radius: 1.3rem;
}

.logo-text {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
  background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.highlight {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-primary {
  background: var(--primary-blue);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 102, 204, 0.4);
}

.cta-secondary {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 2.5rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  background: white;
  color: var(--gray-700);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: white;
  transform: translateY(-3px);
}

/* Section */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-blue);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.feature-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* Why Us Section */
.why-us-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-item {
  text-align: center;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--primary-blue);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-button {
  background: var(--primary-orange);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: #E85A2A;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(255, 107, 53, 0.5);
}

/* Contact Section */
.contact-section {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card-content {
  padding: 2.5rem;
  text-align: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin: 0 auto 1.5rem;
}

.contact-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-value {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: var(--primary-blue);
}

/* Footer */
.footer {
  background: var(--gray-900);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-orange);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: var(--gray-300);
  font-size: 0.95rem;
}

.footer-copyright {
  color: var(--gray-300);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-content {
    height: 64px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero {
    min-height: 80vh;
    margin-top: 64px;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .services-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.03);
}

/* Hamburger icon */
.hamburger {
    width: 35px;
    height: 30px;
    cursor: pointer;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 9999;
    transition: transform 0.3s ease;
}
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active div:nth-child(2) {
    opacity: 0;
}
.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.hamburger div {
    width: 100%;
    height: 4px;
    background: #0066cc;
    border-radius: 5px;
    transition: all 0.3s ease;   }

/* Menü */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: #0066cc;
    padding: 70px 20px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.77,0,0.175,1), opacity 0.5s ease;
    overflow-y: auto;
    z-index: 9998;
}

.side-menu.show {
    transform: translateX(0);
    opacity: 1;
}

.side-menu::-webkit-scrollbar {
    width: 6px;
}
.side-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
}

/* Menü linkleri */
.side-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 102, 204, 0.7);
}

.side-menu a:hover {
    color: #00fffc;
    text-shadow: 0 0 10px #00fffc, 0 0 20px #00fffc;
    transform: translateX(8px);
}

/* Menü açıkken arka plan kaymasını önle */
body.menu-open {
    overflow: hidden;
  }

.logo-img {
  height: 50px;
  transition: transform 0.3s ease; /* yumuşak geçiş */
  cursor: pointer;
}

/* Hover: fare üzerine gelince büyüsün */
.logo-img:hover {
  transform: scale(3);
}

/* Tıklayınca: active durumu */
.logo-img:active {
  transform: scale(3);
}
/* Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eaf4fc;
    color: #0d3b66;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2072a9;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header .company {
    margin-top: 5px;
    font-size: 16px;
    font-style: italic;
    color: #a6c8ff;
}

/* Main Alan */
main {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Intro Paragraf */
.intro p {
    background-color: #dceeff;
    padding: 15px;
    border-left: 5px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
}

/* Accordion Başlık */
.accordion-header {
    cursor: pointer;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    margin-top: 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: #3498db;
}

/* Accordion İçerik */
.accordion-content {
    display: none;
    padding: 15px;
    background-color: #dceeff;
    border-left: 5px solid #3498db;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;
    font-size: 15px;
}

/* Footer */
footer {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

/* Responsive Tasarım */
@media (max-width: 600px) {
    main {
        padding: 0 10px;
    }

    header h1 {
        font-size: 22px;
        text-align: center;
    }

    .intro p, .accordion-content {
        font-size: 14px;
        padding: 10px;
    }

    .accordion-header {
        padding: 10px;
        font-size: 16px;
    }
}
 
    h2 {
        font-size: 48px;
        color: #0d3b66;
        margin-bottom: 20px;
        text-align: center;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    }

    h3 {
        font-size: 32px;
        color: #0d3b66;
        margin-top: 30px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    }
    .service-section {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    max-width: 1200px;
    margin: 0 auto; /* sayfayı ortalar */
    text-align: center;
}

.service-section h2 {
    font-size: 48px;
    color: #0d3b66;
    margin-bottom: 30px;
}

.service-section h3 {
    font-size: 32px;
    color: #0d3b66;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-section .locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* butonları ortalar */
    align-items: center;
    gap: 15px;
    margin: 0 auto;
}

.service-section .locations button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-section .locations button:hover {
    background: linear-gradient(135deg, #217dbb, #145a8a);
    transform: scale(1.1);
}
#yildizContainer {
  margin: 10px 0 20px;
}

.yildiz {
  font-size: 35px;
  cursor: pointer;
  color: #555;
  transition: 0.2s;
}

.yildiz.secili {
  color: gold;
  transform: scale(1.2);
}

#yorumInput {
  width: 100%;
  height: 90px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
  font-size: 16px;
}

#yorumBtn {
  background: #00d4ff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.wa-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999;
}

/* WhatsApp Icon Button */
.wa-button {
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    animation: pulse 1.7s infinite;
    transition: 0.3s;
}

.wa-button img {
    width: 35px;
    height: 35px;
}

.wa-button:hover {
    transform: scale(1.1);
}

/* Mesaj balonu */
.wa-message {
    position: absolute;
    right: 80px;
    bottom: 10px;
    background: white;
    color: #333;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.4s ease;
    font-size: 15px;
    max-width: 200px;
}

/* Mesajın görünmesi */
.wa-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animasyon – Nabız efekti */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    }
}
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #001445;
  color: #00ffff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  transform: translateY(-3px);
}
    
        /* ---- İzole stil alanı: .climate-guide ---- */
        .climate-guide * { box-sizing: border-box; }
        .climate-guide {
          font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
          color: #222;
          background: #f6f8fb;
          padding: 40px 16px;
          display: flex;
          justify-content: center;
        }

        .climate-guide__card {
          width: 100%;
          max-width: 980px;
          background: #fff;
          border-radius: 12px;
          box-shadow: 0 8px 30px rgba(26,40,60,0.08);
          padding: 34px;
          position: relative;
          overflow: hidden;
          margin-top: 0;
        }

        .climate-guide__title {
          color: #ffffff;
          font-size: 30px;
          margin: 0 0 8px 0;
          font-weight: 700;
          letter-spacing: -0.2px;
        }
        
        .climate-guide__subtitle {
          margin: 0 0 20px 0;
          color: #ffffff;
          font-size: 15px;
        }

        .climate-guide__section {
          margin-top: 28px;
          position: relative;
          z-index: 1;
        }
        
        .climate-guide__h2 {
          color: #1e3c72;
          font-size: 25px;
          margin: 0 0 10px 0;
          font-weight: 600;
        }
        
        .climate-guide__h3 {
          color: #1e3c72;
          font-size: 20px;
          margin: 14px 0 8px 0;
          font-weight: 600;
        }

        .climate-guide__p {
          margin: 0 0 12px 0;
          color: #333;
          font-size: 16px;
          line-height: 1.6;
        }

        .climate-guide__info {
          display: block;
          background: linear-gradient(90deg,#e9f6ff,#f1fbff);
          border-left: 4px solid #1e90ff;
          padding: 12px 14px;
          border-radius: 8px;
          margin: 12px 0;
          color: #0f355d;
          font-weight: 600;
          font-size: 14px;
        }

        .climate-guide__tips {
          display: grid;
          grid-template-columns: repeat(2, minmax(0,1fr));
          gap: 12px;
          margin-top: 12px;
        }
        
        .climate-guide__tip {
          background: #fff;
          border: 1px solid rgba(16,24,40,0.04);
          padding: 12px;
          border-radius: 8px;
          box-shadow: 0 2px 8px rgba(16,24,40,0.03);
          font-size: 14px;
          color: #20323a;
        }

        .climate-guide__faq {
          margin-top: 18px;
          padding: 16px;
          border-radius: 10px;
          background: linear-gradient(180deg,#fffef8,#fff);
          border: 1px solid rgba(0,0,0,0.03);
        }
        
        .climate-guide__q { 
          font-weight: 700; 
          color: #0b2b4a; 
          margin: 8px 0; 
          font-size: 15px;
        }
        
        .climate-guide__a { 
          margin: 6px 0 12px 0; 
          color: #333; 
          font-size: 14px; 
        }

        .climate-guide__list { 
          margin: 10px 0 16px 20px; 
          color: #333; 
          font-size: 15px; 
        }
        
        .climate-guide__list li { 
          margin-bottom: 8px; 
        }

        @media (max-width: 800px) {
          .climate-guide__tips { grid-template-columns: 1fr; }
          .climate-guide__title { font-size: 22px; }
        }
        
        @media (max-width: 420px) {
          .climate-guide__card { padding: 20px; }
          .climate-guide__title { font-size: 18px; }
          .climate-guide__subtitle { font-size: 13px; }
        }




