    body {
      font-family: sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
    }
    .container {
      max-width: 960px;
      margin: auto;
    }
body {
  font-family: 'Inter', sans-serif;
  background: #f2f4f8;
  color: #333;
}

.prefooter {
    margin: 10px;
        margin-bottom: 16px;
    padding: 16px;
    border-radius: 14px;
    background: var(--card-bg);
    box-shadow: 0 4px 14px var(--card-shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.offer {
    margin: 10px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.top-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.name:hover {
  color: #004a99;
  text-decoration: underline;
}

.sum, .ppsk, .term {
  font-size: 14px;
  color: #262424;
  opacity: 0.85;
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 12px;
  flex-wrap: wrap;
}

.apply-btn {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.2s;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #0051ff, #0099dd);
  transform: scale(1.03);
}

.toggle-btn {
  background: #f0f0f0;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
  box-shadow: inset 0 0 0 1px #ddd;
  transition: background 0.2s ease;
}

.toggle-btn:hover {
  background: #e6e6e6;
}

.details {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  color: #444;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.links a {
  color: #0055cc;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .top-row {
    flex-direction: row;
    align-items: flex-start;
  }
  .logo img {
    max-width: 100px;
  }
}

:root {
  --bg: #e6f8f6;
  --card-bg: #ffffff;
  --text: #2c3e50;
  --link: #ff7805;
  --link-hover: #c86b00;
  --btn-bg: linear-gradient(135deg, #00d252, #00bf42);
  --btn-hover: linear-gradient(135deg, #02ae32, #038b32);
  --card-shadow: rgba(0, 191, 166, 0.2);
  --border: #a0ded8;
}

body.dark {
  --bg: #122c29;
  --card-bg: #1a3b37;
  --text: #d4f5ef;
  --link: #5fffe0;
  --link-hover: #33ffc2;
  --btn-bg: linear-gradient(135deg, #00bfa6, #009688);
  --btn-hover: linear-gradient(135deg, #009688, #00796b);
  --card-shadow: rgba(0, 255, 221, 0.15);
  --border: #336f68;
}


body {
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  font-family: 'Inter', sans-serif;
}

.offer {
  background: var(--card-bg);
  box-shadow: 0 4px 14px var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.name {
  color: var(--link);
}

.name:hover {
  color: var(--link-hover);
}

.apply-btn {
  background: var(--btn-bg);
}

.apply-btn:hover {
  background: var(--btn-hover);
}

.theme-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--card-shadow);
  transition: all 0.3s ease;
  z-index: 999;
}

body.dark .sum,
body.dark .ppsk,
body.dark .details,
body.dark .term {
  color: #ccc;
}

body.dark .links a {
  color: #66baff;
}

body.dark .links a:hover {
  color: #3399ff;
}

.dark .site-header {
    background: #0e4842;
}

    .site-footer {
      background: #f7f7f7;
      color: #666;
      font-size: 14px;
      text-align: center;
      padding: 15px 10px;
      border-top: 1px solid #ddd;
      margin-top: 40px;
    }
    .site-footer .footer-menu a {
      color: #666;
      text-decoration: none;
      margin: 0 6px;
    }
    .site-footer .footer-menu a:hover {
      text-decoration: underline;
    }
    .site-footer .disclaimer {
      font-size: 12px;
      margin-top: 8px;
      color: #999;
    }

   .site-header {
      background: #00c1a9;
      color: white;
      padding: 15px 0;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    .header-top {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }


    
    .main-logo {
        height: 40px;
    }
    
@media screen and (max-width: 600px) {
    
     .main-logo {
        height: 30px;
    }
}