*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f9faff;
  margin: 0;
  min-height: 100vh;
  transition: background .2s, color .2s;
}

body.dark {
  background: #161b22;
  color: #e3e3e3;
}

.container {
  max-width: 850px;
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

body.dark .container {
  background: #23272e;
  color: #eee;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-nav {
  text-align: center;
  margin: 15px 0 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.header-nav a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

body.dark .header-nav {
  background: rgba(35, 39, 46, 0.5);
}

body.dark .header-nav a {
  color: #a0aec0;
}

.header-nav a:hover {
  background: #ebf8ff;
  color: #2b6cb0;
  transform: translateY(-1px);
}

body.dark .header-nav a:hover {
  background: #2d3748;
  color: #63b3ed;
}

.theme-toggle.small-btn {
  margin-left: auto;
}

h1 {
  font-size: 2em;
  margin-bottom: 12px;
  color: #2a72e7;
}

body.dark h1 {
  color: #73d6ff;
}

.domain-tagline {
  font-size: 1.1em;
  font-weight: 500;
  color: #1a5ac4;
  margin: -8px 0 16px;
  text-align: center;
}

body.dark .domain-tagline {
  color: #88c8ff;
}

.input-group {
  margin-bottom: 16px;
}

/* === NEW: POLISHED DROP ZONE STYLES === */
.drop-area {
  border: 3px dashed #4299e1;
  border-radius: 20px;
  padding: 50px 30px;
  margin-bottom: 25px;
  background: #ebf8ff;
  color: #2b6cb0;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

body.dark .drop-area {
  border-color: #4fd1c5;
  background: rgba(79, 209, 197, 0.1);
  color: #81e6d9;
}

/* Pulse Animation Keyframes */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 114, 231, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(42, 114, 231, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(42, 114, 231, 0);
  }
}

@keyframes pulse-glow-dark {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 221, 226, 0.3);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(68, 221, 226, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(68, 221, 226, 0);
  }
}

/* Active Drag State */
.drop-area.dragover {
  border-color: #0056b3;
  background: #e1efff;
  transform: scale(1.02);
  /* Subtle pop */
  animation: pulse-glow 1.5s infinite;
}

body.dark .drop-area.dragover {
  border-color: #36ffc4;
  background: #20272f;
  animation: pulse-glow-dark 1.5s infinite;
}

/* ====================================== */

.drop-area input[type=file] {
  display: none;
}

.image-info {
  font-size: 13px;
  color: #417bc2;
  margin-bottom: 10px;
  background: #f6f8fc;
  border-radius: 8px;
  padding: 5px 12px;
  display: none;
}

body.dark .image-info {
  background: #243040;
  color: #5eb2ff;
}

#preview-wrapper {
  position: relative;
  max-width: 100%;
  width: 100%;
  min-height: 60px;
  margin: 14px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#img-preview {
  max-width: 100%;
  max-height: 220px;
  border-radius: 9px;
  box-shadow: 0 2px 8px #ececec;
  background: #fafbff;
  margin: auto;
  display: none;
}

body.dark #img-preview {
  box-shadow: 0 2px 8px #222e3f;
  border: 2px solid #243040;
  background: #23272e;
}

.resize-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}

.resize-fields {
  display: flex;
  gap: 28px;
  justify-content: center;
  width: 100%;
  max-width: 340px;
}

.resize-fields>div {
  flex: none;
  width: 110px;
}

.ratio-box {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 14px;
  padding: 7px 18px 8px 16px;
  background: #eef6fe;
  border-radius: 7px;
  box-shadow: 0 1px 5px #ccefff11;
}

body.dark .ratio-box {
  background: #23272e;
  color: #c0ecff;
  box-shadow: 0 1px 5px #01223344;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

select,
button,
input[type=number],
input[type=text] {
  padding: 12px 15px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

select:focus,
input[type=number]:focus,
input[type=text]:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

body.dark select,
body.dark input[type=number],
body.dark input[type=text] {
  background: #2d3748;
  border-color: #4a5568;
  color: #fff;
}

body.dark select:focus,
body.dark input[type=number]:focus,
body.dark input[type=text]:focus {
  border-color: #63b3ed;
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.2);
}

input[type=range] {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}

button {
  background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  margin-top: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(49, 130, 206, 0.3);
  position: relative;
  overflow: hidden;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(49, 130, 206, 0.4);
  filter: brightness(1.1);
}

button:active {
  transform: translateY(0);
}

/* Shine Effect */
button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

button:hover::after {
  left: 100%;
}

body.dark button {
  background: linear-gradient(135deg, #339fc4 0%, #2a72e7 100%);
}

.small-btn {
  padding: 7px 15px;
  font-size: 14px;
  border-radius: 6px;
  margin: 2px 4px 2px 0;
  width: auto;
  background: #fff;
  color: #2a72e7;
  border: 1px solid #cce2ff;
  box-shadow: none;
}

.small-btn:hover {
  background: #f0f6ff;
  color: #0056b3;
  border-color: #a1caff;
}

body.dark .small-btn {
  background: #23272e;
  color: #73d6ff;
  border-color: #3a424e;
}

body.dark .small-btn:hover {
  background: #2c333d;
}

.formats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.format-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #4299e1;
  color: #2b6cb0;
}

body.dark .format-card {
  background: #2d3748;
  color: #a0aec0;
  border-color: #4a5568;
}

body.dark .format-card:hover {
  border-color: #63b3ed;
  color: #fff;
  background: #4a5568;
}

.how-to-use {
  text-align: left;
  margin-top: 20px;
  padding: 10px 15px;
  background: #f3faff;
  border-radius: 10px;
}

.how-to-use h2 {
  text-align: center;
  color: #2a72e7;
  margin-top: 10px;
  margin-bottom: 16px;
}

.how-to-use h3 {
  color: #2a72e7;
  margin-bottom: 5px;
  margin-top: 20px;
}

.how-to-use p,
.how-to-use li {
  font-size: 15px;
  margin-top: 0;
  color: #333;
  line-height: 1.6;
}

body.dark .how-to-use {
  background: #243040;
}

body.dark .how-to-use h2 {
  color: #73d6ff;
}

body.dark .how-to-use h3 {
  color: #88c8ff;
}

body.dark .how-to-use p,
body.dark .how-to-use li {
  color: #c0ecff;
}

.dimension-note {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}

body.dark .dimension-note {
  color: #99b2d3;
}

.note {
  margin-top: 11px;
  color: #7299df;
  font-size: 14px;
}

body.dark .note {
  color: #6acbc8;
}

.madein {
  font-size: 1.03em;
  color: #2858c7;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 3px;
  letter-spacing: .01em;
  text-align: center;
}

body.dark .madein {
  color: #73d6ff;
}

footer {
  text-align: center;
  padding: 18px 0 10px;
  font-size: 14px;
  color: #6a798b;
  opacity: .89;
  margin-top: 2px;
}

body.dark footer {
  color: #99b2d3;
}

@media (min-width:600px) {
  .resize-group {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 16px;
  }

  .resize-fields {
    margin-bottom: 0;
    gap: 16px;
    max-width: none;
  }

  .resize-fields>div {
    width: 120px;
  }

  .ratio-box {
    margin-bottom: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .how-to-use {
    padding: 15px 30px;
  }
}

/* === BLOG STYLES === */

/* 1. Standard Blog Meta Data */
.blog-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

body.dark .blog-meta {
  color: #99b2d3;
}

/* 2. Featured Cover Image */
.blog-cover-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  margin: 10px auto 25px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark .blog-cover-image {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
}

/* 3. Callout Blocks */
.callout {
  padding: 18px 22px;
  margin: 25px 0;
  border-radius: 10px;
  background: #f3faff;
  border-left: 5px solid #2a72e7;
  text-align: left;
}

.callout.tip {
  border-color: #28a745;
  background: #f2fbf5;
}

.callout.warning {
  border-color: #dc3545;
  background: #fff6f7;
}

.callout h3,
.callout h4 {
  margin-top: 0;
  color: #2a72e7;
}

.callout.tip h3,
.callout.tip h4 {
  color: #28a745;
}

.callout.warning h3,
.callout.warning h4 {
  color: #dc3545;
}

body.dark .callout {
  background: #243040;
  border-left-color: #73d6ff;
}

body.dark .callout h3,
body.dark .callout h4 {
  color: #73d6ff;
}

body.dark .callout.tip {
  background: #223a2b;
  border-left-color: #58cc73;
}

body.dark .callout.tip h3,
body.dark .callout.tip h4 {
  color: #58cc73;
}

body.dark .callout.warning {
  background: #402428;
  border-left-color: #f06a77;
}

body.dark .callout.warning h3,
body.dark .callout.warning h4 {
  color: #f06a77;
}

/* 4. Featured Guides List */
.featured-guides-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 25px;
}

.featured-guides-list li {
  margin-bottom: 25px;
}

.featured-guides-list li a {
  font-size: 20px;
  font-weight: 700;
  color: #2a72e7;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

.featured-guides-list li a:hover {
  text-decoration: underline;
}

.featured-guides-list li p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

body.dark .featured-guides-list li a {
  color: #73d6ff;
}

/* === EXTRACTED STYLES FROM INDEX.HTML === */

/* TABS STYLES */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 24px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #e1efff;
  background: #fff;
  color: #555;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: #2a72e7;
  color: #fff;
  border-color: #2a72e7;
  box-shadow: 0 4px 10px rgba(42, 114, 231, 0.3);
}

body.dark .tab-btn {
  background: #23272e;
  border-color: #3a424e;
  color: #99b2d3;
}

body.dark .tab-btn.active {
  background: #73d6ff;
  color: #161b22;
  border-color: #73d6ff;
  box-shadow: 0 4px 10px rgba(115, 214, 255, 0.2);
}

/* BULK FILE LIST */
#bulk-file-list {
  text-align: left;
  margin: 10px auto;
  max-width: 100%;
  font-size: 14px;
  color: #555;
}

.file-item {
  background: #f0f6ff;
  padding: 8px 12px;
  margin-bottom: 4px;
  border-radius: 6px;
  border: 1px solid #e1efff;
  display: flex;
  justify-content: space-between;
}

body.dark .file-item {
  background: #2a3038;
  border-color: #3a424e;
  color: #c0ecff;
}

/* COMPACT CROP BUTTONS */
.crop-label {
  font-weight: bold;
  margin-bottom: 6px;
  display: block;
  color: #333;
  font-size: 14px;
  text-align: center;
}

body.dark .crop-label {
  color: #c0ecff;
}

.crop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.crop-btn {
  padding: 6px 10px;
  border: 1px solid #cce2ff;
  background: #f3faff;
  color: #2a72e7;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}

.crop-btn:hover {
  background: #e1eeff;
  border-color: #a1caff;
}

.crop-btn.active {
  background: #2a72e7;
  color: white;
  border-color: #2a72e7;
  box-shadow: 0 2px 4px rgba(42, 114, 231, 0.25);
}

body.dark .crop-btn {
  background: #23272e;
  border-color: #3a424e;
  color: #73d6ff;
}

body.dark .crop-btn:hover {
  background: #2c333d;
  border-color: #556175;
}

body.dark .crop-btn.active {
  background: #73d6ff;
  color: #161b22;
  border-color: #73d6ff;
  box-shadow: 0 2px 4px rgba(115, 214, 255, 0.15);
}

/* EDIT PANEL STYLES */
.filters-toggle-btn {
  width: 100%;
  background: #f0f6ff;
  color: #2a72e7;
  border: 2px dashed #cce2ff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.2s;
}

.filters-toggle-btn:hover {
  background: #e1eeff;
  border-color: #a1caff;
}

body.dark .filters-toggle-btn {
  background: #243040;
  border-color: #3a424e;
  color: #73d6ff;
}

body.dark .filters-toggle-btn:hover {
  background: #2c333d;
}

#filters-panel {
  background: #f9faff;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

body.dark #filters-panel {
  background: #1b232b;
  border-color: #333;
}

#sliders-section-container {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

body.dark #sliders-section-container {
  border-top-color: #333;
}

.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.style-item label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  display: block;
  margin-bottom: 8px;
}

body.dark .style-item label {
  color: #c0ecff;
}

.style-item input[type=range] {
  width: 100%;
  margin-bottom: 5px;
}

.style-val {
  float: right;
  color: #2a72e7;
  font-size: 12px;
}

/* WARNING NOTE & SEO TEXT */
.warning-note {
  font-size: 13px;
  color: #856404;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-top: 5px;
  line-height: 1.5;
  text-align: center;
}

body.dark .warning-note {
  color: #ffda6a;
  background-color: #332b00;
  border-color: #665500;
}

.seo-text-section h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2a72e7;
  font-size: 1.4em;
}

body.dark .seo-text-section h3 {
  color: #73d6ff;
}

.seo-text-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.seo-text-section li {
  margin-bottom: 10px;
}

.seo-text-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-block {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 20px;
}

body.dark .faq-block {
  border-top-color: #333;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.faq-answer {
  color: #555;
  font-size: 15px;
  margin: 0;
}

body.dark .faq-question {
  color: #c0ecff;
}

body.dark .faq-answer {
  color: #99b2d3;
}

#ea-share-img {
  position: fixed;
  left: 6px;
  bottom: 6px;
  z-index: 10000;
}

#ea-share-img svg {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

@media(max-width:420px) {
  #ea-share-img svg {
    width: 36px;
    height: 36px;
  }
}

/* === UX ENHANCEMENTS === */

/* 1. Toast Notifications */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #fff;
  color: #333;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  min-width: 250px;
  border-left: 4px solid #2a72e7;
  animation: slideIn 0.3s ease-out forwards;
  opacity: 0;
  transform: translateX(100%);
}

.toast.error {
  border-left-color: #dc3545;
}

.toast.success {
  border-left-color: #28a745;
}

body.dark .toast {
  background: #23272e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* 2. Progress Overlay */
#progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10002;
  display: none;
  /* Flex when active */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.dark #progress-overlay {
  background: rgba(22, 27, 34, 0.85);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #e1efff;
  border-top-color: #2a72e7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

body.dark .spinner {
  border-color: #3a424e;
  border-top-color: #73d6ff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-text {
  font-size: 18px;
  font-weight: bold;
  color: #2a72e7;
}

body.dark .progress-text {
  color: #73d6ff;
}

/* 3. Confetti Canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* LATEST ARTICLES GRID */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.article-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s;
}

body.dark .article-card {
  background: #23272e;
  border-color: #3a424e;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-title {
  font-size: 18px;
  font-weight: bold;
  color: #2a72e7;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}

body.dark .article-title {
  color: #73d6ff;
}

.article-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

body.dark .article-desc {
  color: #99b2d3;
}

.read-more-btn {
  font-size: 13px;
  font-weight: bold;
  color: #2a72e7;
  text-decoration: none;
}

body.dark .read-more-btn {
  color: #73d6ff;
}

/* Internal Links Block */
.internal-links {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

body.dark .internal-links {
  border-top-color: #3a424e;
}

.internal-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.internal-links a:hover {
  color: #2a72e7;
  text-decoration: underline;
}

body.dark .internal-links a {
  color: #99b2d3;
}

body.dark .internal-links a:hover {
  color: #73d6ff;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-card.highlight {
  background: #f9faff;
  border: 1px solid #e1efff;
}

.card-title {
  margin-top: 0;
  color: #2a72e7;
}

.card-title-plain {
  margin-top: 0;
  color: inherit;
}

/* Dark Mode Overrides for Contact Page */
body.dark .contact-card {
  background: #2d333b;
  /* Darker background for cards */
  border-color: #444;
  color: #c9d1d9;
}

body.dark .contact-card.highlight {
  background: #22272e;
  /* Slightly different for highlight */
  border-color: #30363d;
}

body.dark .card-title {
  color: #58a6ff;
}

body.dark .card-title-plain {
  color: #c9d1d9;
}

.card-link {
  color: #2a72e7;
  font-weight: bold;
  text-decoration: none;
}

body.dark .card-link {
  color: #73d6ff;
}

/* HOW TO USE CARDS */
.how-to-step-card {
  flex: 1;
  min-width: 250px;
  background: #f9faff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e1efff;
  transition: all 0.3s ease;
}

body.dark .how-to-step-card {
  background: #23272e;
  border-color: #3a424e;
  color: #c0ecff;
}

.how-to-step-card h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #2a72e7;
}

body.dark .how-to-step-card h3 {
  color: #73d6ff;
}

.how-to-step-card p {
  color: #666;
  font-size: 14px;
}

body.dark .how-to-step-card p {
  color: #99b2d3;
}

.how-to-step-icon {
  font-size: 30px;
  margin-bottom: 10px;
}