/* Main Content Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 2.5rem; /* Add space below content, matches top spacing */
}
/* Add whitespace border (white background and padding) to support and help sections */
.eh-support-hero, .eh-help-articles {
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  padding: 2.5rem 1.5rem;
  margin: 2.5rem auto;
  max-width: 900px;
}
@media (max-width: 900px) {
  .eh-support-hero, .eh-help-articles {
    padding: 1.2rem 0.5rem;
    margin: 1.2rem auto;
  }
}
/* Support Page Modern Styles */
.eh-support-hero {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.eh-support-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.eh-support-card {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(60,60,60,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.eh-support-card:hover {
  box-shadow: 0 6px 24px rgba(60,60,60,0.16);
}
.eh-support-icon {
  font-size: 2.2rem;
  color: #fbbc05;
  margin-bottom: 1.2rem;
}
.eh-support-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}
.eh-support-link {
  color: #111 !important;
  text-decoration: underline !important;
  font-weight: 500;
  margin-top: 1.2rem;
  transition: color 0.2s;
}
.eh-support-link:hover, .eh-support-link:focus {
  color: #fbbc05 !important;
}

/* Help Articles Section */
.eh-help-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.eh-help-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eh-help-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: #111 !important;
  text-decoration: none !important;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 6px rgba(60,60,60,0.06);
}
.eh-help-item:hover, .eh-help-item:focus {
  background: #fffbe6;
  color: #fbbc05 !important;
}
.eh-help-title {
  font-weight: 500;
  color: #111;
}
@media (max-width: 900px) {
  .eh-support-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .eh-support-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .eh-help-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}
/* Article card link and header overrides for articles index */
.eh-article-link {
  color: #111 !important;
  text-decoration: underline !important;
  transition: color 0.2s;
}
.eh-article-link:hover, .eh-article-link:focus {
  color: #fbbc05 !important;
}
.eh-article-title {
  color: #111 !important;
}
/* Social icon link style: no underline, inherit color */
.eh-social-icon {
  text-decoration: none !important;
  color: inherit !important;
  transition: opacity 0.2s;
}
.eh-social-icon:hover, .eh-social-icon:focus {
  opacity: 0.7;
}
/* Article Page Modern Styles */
.eh-article-main {
  max-width: 700px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  text-align: left;
}
.eh-article-meta {
  font-size: 1rem;
  color: #888;
  margin-bottom: 1.2rem;
}
.eh-article-main img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 1.2rem;
}
.eh-article-main h3, .eh-article-main h4 {
  color: #222;
  margin-top: 1.2rem;
}
.eh-article-main p {
  color: #444;
  font-size: 1.08rem;
}
.eh-article-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #222;
}
.eh-article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1.5rem;
}
.eh-article-nav a {
  color: #222;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.eh-article-nav a:hover {
  color: #fbbc05;
}
@media (max-width: 700px) {
  .eh-article-main {
    padding: 1rem 0.5rem;
    margin: 1.2rem auto 1.2rem auto;
  }
  .eh-article-nav {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }
}
/* Articles Page Modern Styles */
.eh-articles-section {
  max-width: 900px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  text-align: left;
}
.eh-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.eh-article-card {
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(60,60,60,0.08);
  overflow: hidden;
  flex: 1 1 260px;
  max-width: 280px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.eh-article-card:hover {
  box-shadow: 0 4px 16px rgba(60,60,60,0.16);
}
.eh-article-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.eh-article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.eh-article-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.eh-article-content h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: #222;
}
.eh-article-meta {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.eh-article-content p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}
@media (max-width: 900px) {
  .eh-articles-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .eh-articles-section {
    padding: 1rem 0.5rem;
    margin: 1.2rem auto 1.2rem auto;
  }
}
/* Solutions Page Modern Styles */
.eh-solutions-section {
  max-width: 700px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  text-align: left;
}
.eh-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.eh-section-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.eh-solutions-list {
  list-style: disc inside;
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}
.eh-solutions-products {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.eh-solutions-products figure {
  margin: 0;
  flex: 1 1 320px;
  max-width: 340px;
  text-align: center;
}
.eh-solutions-products img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(60,60,60,0.08);
}
.eh-solutions-products figcaption {
  margin-top: 0.5rem;
  color: #222;
  font-weight: 500;
}
@media (max-width: 900px) {
  .eh-solutions-products {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .eh-solutions-section {
    padding: 1rem 0.5rem;
    margin: 1.2rem auto 1.2rem auto;
  }
  .eh-section-title {
    font-size: 1.3rem;
  }
}
/* Remove underline from social icons */
.eh-footer-social a {
  text-decoration: none !important;
}
.eh-footer-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
/* Legal Page Modern Styles */
.eh-legal-section {
  max-width: 700px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  text-align: left;
}
.eh-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.eh-section-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
@media (max-width: 700px) {
  .eh-legal-section {
    padding: 1rem 0.5rem;
    margin: 1.2rem auto 1.2rem auto;
  }
  .eh-section-title {
    font-size: 1.3rem;
  }
}
/* Company Page Modern Styles */
.eh-company-section {
  max-width: 700px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  text-align: left;
}
.eh-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.eh-section-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.eh-company-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.eh-company-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 1px 4px rgba(60,60,60,0.04);
}
.eh-company-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.eh-company-icon svg {
  width: 22px;
  height: 22px;
  fill: #222;
}
.eh-company-link {
  color: #222;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.eh-company-link:hover {
  color: #fbbc05;
}
/* Ensure all h2 headers are black */
h2 {
  color: #222 !important;
}
h1 {
  color: #222 !important;
}
h3 {
  color: #222 ;
}
/* Contact Page Modern Styles */
.eh-contact-section {
  max-width: 600px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--eh-radius);
  box-shadow: 0 2px 16px rgba(60,60,60,0.08);
  text-align: center;
}
.eh-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.eh-section-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}
.eh-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.eh-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 1px 4px rgba(60,60,60,0.04);
}
/* Global link styles */
a, a:visited {
  color: #222 !important;
  text-decoration: underline !important;
  transition: color 0.2s;
}
a:hover, a:active {
  color: #fbbc05 !important;
}
/* Header link colors: black, orange on hover/active */
.eh-header-link {
  color: #222 !important;
  text-decoration: underline !important;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
  margin-left: 1.5rem;
}
.eh-header-link:hover, .eh-header-link:active {
  color: #fbbc05 !important;
}
/* Remove custom link colors from header/footer/contact */
}
.eh-hero-video video {
  width: 960px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--eh-shadow);
  display: block;
  margin: 0 auto 2rem auto;
}
/* Copyright bar at bottom */
.eh-footer-sticky {
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(60,60,60,0.08);
  border-radius: var(--eh-radius) var(--eh-radius) 0 0;
  font-size: 0.98rem;
}
body { padding-bottom: 0; }
.eh-footer-content-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.3rem 1.2rem 0.3rem 1.2rem;
  min-height: 48px;
}
.eh-footer-logo img {
  height: 40px;
  width: auto;
  animation: eh-logo-spin 2.5s linear infinite;
  display: block;
}
.eh-footer-center {
  flex: 1 1 0%;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 0.5rem;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.eh-footer-links a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 80px;
  font-size: 0.98rem;
}
.eh-footer-links a:hover {
  color: #fbbc05;
}
    margin-bottom: 0.2rem;
  }
  .eh-footer-social {
    justify-content: center;
    margin-top: 0.2rem;
  }
  .eh-footer-copyright {
    margin-left: 0;
    margin-top: 0.2rem;
  }
}
/* Footer Customization for EffortlessHome */
.eh-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #fff;
  color: #222;
  padding: 0.75rem 2rem;
  min-height: 70px;
  width: 100%;
  box-shadow: var(--eh-shadow);
  border-radius: var(--eh-radius) var(--eh-radius) 0 0;
  font-size: 1rem;
  position: relative;
  margin-top: var(--eh-spacing);
  gap: 1.5rem;
}
.eh-footer-logo img {
  height: 70px;
  width: auto;
  animation: eh-logo-spin 2.5s linear infinite;
  display: block;
}
@keyframes eh-logo-spin {
  0% { filter: brightness(1) drop-shadow(0 0 0 #fff); }
  50% { filter: brightness(1.2) drop-shadow(0 0 8px #fbbc05); }
  100% { filter: brightness(1) drop-shadow(0 0 0 #fff); }
}
.eh-footer-center {
  flex: 1 1 0%;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.eh-footer-links ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.eh-footer-links a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 200px;
}
.eh-footer-links a:hover {
  color: #fbbc05;
}
@media (max-width: 700px) {
  .eh-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0.5rem;
    text-align: center;
    gap: 0.5rem;
  }
  .eh-footer-center {
    margin: 0.5rem 0;
    justify-content: center;
  }
  .eh-footer-links ul {
    justify-content: center;
    gap: 1rem;
  }
  .eh-footer-links {
    justify-content: center;
  }
}
/* Header Customization for EffortlessHome */
.eh-header {
  width: 100%;
  background: #fff;
  color: #222;
  margin-bottom: var(--eh-spacing);
  box-shadow: var(--eh-shadow);
}
.eh-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.18rem 1.1rem 0.18rem 1.1rem;
  min-height: 44px;
}
.eh-header-tight {
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
}
.eh-header-logo-img {
  display: block;
  height: 52px;
  width: 200px;
  object-fit: contain;
  margin-top: -8px;
  margin-bottom: -8px;
}
/* Remove special logo formatting: header/footer logos use default image styling */
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.eh-header-link {
  color: #222;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 1.5rem;
}
.eh-header-link:hover {
  color: #fbbc05;
}
@media (max-width: 700px) {
  .eh-header-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.3rem 0.5rem;
    min-height: 38px;
  }
  .eh-header-logo {
    justify-content: center;
    margin-bottom: 0.2rem;
  }
  .eh-header-links {
    justify-content: center;
    margin-left: 0;
  }
}
.eh-header-nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.eh-header-link {
  color: #222;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.eh-header-link:hover {
  color: #fbbc05;
}
@media (max-width: 700px) {
  .eh-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
  .eh-header-nav ul {
    gap: 1rem;
  }
}
/* EffortlessHome Modern Theme */
:root {
  --eh-primary: #1a73e8;
  --eh-secondary: #fbbc05;
  --eh-bg: #f7f9fa;
  --eh-surface: #fff;
  --eh-text: #222;
  --eh-muted: #6c757d;
  --eh-radius: 12px;
  --eh-shadow: 0 2px 8px rgba(60,60,60,0.08);
  --eh-spacing: 1.5rem;
}

body {
  background: var(--eh-bg);
  color: var(--eh-text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header, footer {
  background: var(--eh-surface);
  box-shadow: var(--eh-shadow);
  border-radius: 0 0 var(--eh-radius) var(--eh-radius);
  padding: var(--eh-spacing) 0.5rem;
  margin-bottom: var(--eh-spacing);
}

main {
  max-width: 900px;
  margin: 0 auto;
  background: var(--eh-surface);
  border-radius: var(--eh-radius);
  box-shadow: var(--eh-shadow);
  padding: var(--eh-spacing);
}

section {
  margin-bottom: var(--eh-spacing);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--eh-primary);
  font-weight: 700;
  margin-top: 0;
}

a {
  color: var(--eh-primary);
  text-decoration: none;
  transition: color 0.2s;
}
/* Header styles: lighter and normal weight */
h1, h2, h3, h4, h5, h6 {
  color: #333 !important;
  font-weight: 400 !important;
}
.eh-section-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #333;
}
.eh-section-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
nav ul li {
  display: inline;
}

img {
  border-radius: var(--eh-radius);
  max-width: 100%;
  height: auto;
}

.eh-card {
  background: var(--eh-surface);
  border-radius: var(--eh-radius);
  box-shadow: var(--eh-shadow);
  padding: 1.5rem;
  margin-bottom: var(--eh-spacing);
}

@media (max-width: 600px) {
  main {
    padding: 1rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}
