/* Digital Takeout Day Main Styles */
:root {
  --primary-color: #1976D2;
  --primary-dark: #0D47A1;
  --primary-light: #64B5F6;
  --secondary-color: #FF8C42;
  --secondary-dark: #e67326;
  --secondary-light: #ffa66b;
  --bg-color: #f0f5fa;
  --text-color: #333333;
  --light-gray: #e0e0e0;
  --dark-gray: #555555;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 8px;
}

[data-theme="dark"] {
  --primary-color: #4C9AFF;
  --primary-dark: #2684FF;
  --primary-light: #85B8FF;
  --secondary-color: #FF9D5E;
  --secondary-dark: #FF8B3E;
  --secondary-light: #FFBF94;
  --bg-color: #121212;
  --text-color: #E0E0E0;
  --light-gray: #383838;
  --dark-gray: #BABABA;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.7);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Dark theme overrides */
[data-theme="dark"] body {
  background-color: var(--bg-color);
}

[data-theme="dark"] .site-header {
  background-color: #1E1E1E;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

[data-theme="dark"] .about {
  background-color: #1E1E1E;
}

[data-theme="dark"] .concept, 
[data-theme="dark"] .origin, 
[data-theme="dark"] .benefits {
  background-color: #2A2A2A;
}

[data-theme="dark"] .services {
  background-color: var(--bg-color);
}

[data-theme="dark"] .service-block {
  background-color: #1E1E1E;
}

[data-theme="dark"] .service-header {
  background-color: #1E1E1E;
}

[data-theme="dark"] .faq {
  background-color: #1E1E1E;
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6 {
  color: var(--primary-light);
}

[data-theme="dark"] .cta-secondary {
  background-color: #1E1E1E;
}

[data-theme="dark"] .faq-item {
  border-bottom: 1px solid var(--light-gray);
}

[data-theme="dark"] .storage-options li {
  margin-bottom: 0.75rem;
}

.storage-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.storage-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
}

/* Header Styles */
.site-header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 128px;
  width: auto;
}

/* Theme-specific logos */
.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

[data-theme="dark"] .logo-light {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 80% 10%, rgba(43, 136, 196, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--dark-gray);
}

.next-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0;
  color: var(--primary-dark);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.add-to-calendar-wrapper {
  position: relative;
}

.add-to-calendar, .cta-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.add-to-calendar {
  background-color: var(--primary-color);
  color: white;
  border: none;
  box-shadow: var(--shadow-md);
}

.add-to-calendar:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.calendar-options {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 230px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

[data-theme="dark"] .calendar-options {
  background-color: #1e1e1e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.calendar-option {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: var(--text-color);
  cursor: pointer;
}

.calendar-option:hover,
.calendar-option:focus-visible {
  background-color: rgba(25, 118, 210, 0.1);
  outline: none;
}

[data-theme="dark"] .calendar-option:hover,
[data-theme="dark"] .calendar-option:focus-visible {
  background-color: rgba(76, 154, 255, 0.2);
}

.cta-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
  background-color: var(--primary-light);
  color: white;
  text-decoration: none;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: white;
}

.about h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  gap: 2.5rem;
}

.concept, .origin, .benefits {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.concept:hover, .origin:hover, .benefits:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.concept h3, .origin h3, .benefits h3 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

blockquote {
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  font-style: italic;
  margin: 1.5rem 0;
}

.quote-source {
  text-align: right;
  font-style: italic;
  color: var(--dark-gray);
}

.origin-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.origin-link:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.services h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.service-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.service-search {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-search label {
  font-weight: 600;
  color: var(--primary-dark);
}

[data-theme="dark"] .service-search label {
  color: var(--secondary-light);
}

.service-search input[type="search"] {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-search input[type="search"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}

[data-theme="dark"] .service-search input[type="search"] {
  background-color: #1c1c1c;
  border-color: var(--light-gray);
  color: var(--text-color);
}

[data-theme="dark"] .service-search input[type="search"]:focus {
  box-shadow: 0 0 0 3px rgba(76, 154, 255, 0.25);
}

.service-controls-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.service-hide-completed,
.service-reset-progress {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-hide-completed[aria-pressed="true"] {
  background-color: var(--primary-color);
  color: white;
}

.service-hide-completed:hover,
.service-reset-progress:hover {
  background-color: var(--primary-light);
  color: white;
}

.service-empty-state {
  text-align: center;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.service-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.service-category-nav li {
  margin: 0;
}

.service-category-nav a {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(25, 118, 210, 0.25);
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  background: rgba(25, 118, 210, 0.08);
}

.service-category-nav a:hover,
.service-category-nav a:focus-visible {
  background: var(--primary-color);
  color: white;
  outline: none;
}

.service-category-nav li.disabled a {
  opacity: 0.4;
  pointer-events: none;
}

[data-theme="dark"] .service-category-nav a {
  border-color: rgba(76, 154, 255, 0.3);
  color: var(--secondary-light);
  background: rgba(76, 154, 255, 0.18);
}

[data-theme="dark"] .service-category-nav a:hover,
[data-theme="dark"] .service-category-nav a:focus-visible {
  background: var(--secondary-light);
  color: #0b1c33;
}

.service-category {
  margin-bottom: 3rem;
}

.service-category:last-of-type {
  margin-bottom: 0;
}

.service-category-header {
  margin-bottom: 1.5rem;
  padding-left: 0.85rem;
  border-left: 4px solid rgba(25, 118, 210, 0.25);
}

.service-category-header h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}

[data-theme="dark"] .service-category-header {
  border-left-color: rgba(76, 154, 255, 0.35);
}

[data-theme="dark"] .service-category-header h3 {
  color: var(--secondary-light);
}

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

.service-block {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(25, 118, 210, 0.08);
  position: relative;
}

.service-block.expanded {
  grid-column: 1 / -1;
  box-shadow: var(--shadow-md);
  transform: none;
}

.service-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-header {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  cursor: pointer;
  background-color: white;
  position: relative;
  border: none;
  gap: 0.75rem;
}

.service-header:focus {
  outline: none;
}

.service-header:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(255, 140, 66, 0.12));
  box-shadow: 0 8px 18px rgba(25, 118, 210, 0.18);
  flex-shrink: 0;
}

.service-block[data-service-id="google"] .service-icon-wrap {
  background: linear-gradient(135deg, #4285f4, #34a853);
  box-shadow: 0 8px 18px rgba(66, 133, 244, 0.35);
}

.service-block[data-service-id="microsoft"] .service-icon-wrap {
  background: linear-gradient(135deg, #0078d4, #00a4ef);
  box-shadow: 0 8px 18px rgba(0, 120, 212, 0.35);
}

.service-block[data-service-id="whatsapp"] .service-icon-wrap {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.service-block[data-service-id="discord"] .service-icon-wrap {
  background: linear-gradient(135deg, #5865f2, #7289da);
  box-shadow: 0 8px 18px rgba(88, 101, 242, 0.35);
}

.service-block[data-service-id="chatgpt"] .service-icon-wrap {
  background: linear-gradient(135deg, #10a37f, #0b7a60);
  box-shadow: 0 8px 18px rgba(16, 163, 127, 0.35);
}

.service-block[data-service-id="claude"] .service-icon-wrap {
  background: linear-gradient(135deg, #8f5cf7, #4e2a84);
  box-shadow: 0 8px 18px rgba(143, 92, 247, 0.35);
}

.service-block[data-service-id="facebook"] .service-icon-wrap {
  background: linear-gradient(135deg, #1877f2, #1d3c78);
  box-shadow: 0 8px 18px rgba(24, 119, 242, 0.35);
}

.service-block[data-service-id="instagram"] .service-icon-wrap {
  background: linear-gradient(135deg, #f58529, #dd2a7b);
  box-shadow: 0 8px 18px rgba(221, 42, 123, 0.35);
}

.service-block[data-service-id="linkedin"] .service-icon-wrap {
  background: linear-gradient(135deg, #0a66c2, #004182);
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.35);
}

.service-block[data-service-id="twitter"] .service-icon-wrap {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
  box-shadow: 0 8px 18px rgba(29, 161, 242, 0.35);
}

.service-block[data-service-id="reddit"] .service-icon-wrap {
  background: linear-gradient(135deg, #ff4500, #ff7043);
  box-shadow: 0 8px 18px rgba(255, 69, 0, 0.35);
}

.service-block[data-service-id="tiktok"] .service-icon-wrap {
  background: linear-gradient(135deg, #25f4ee, #ff0050);
  box-shadow: 0 8px 18px rgba(37, 244, 238, 0.25);
}

.service-block[data-service-id="pinterest"] .service-icon-wrap {
  background: linear-gradient(135deg, #bd081c, #e60023);
  box-shadow: 0 8px 18px rgba(189, 8, 28, 0.35);
}

.service-block[data-service-id="apple"] .service-icon-wrap {
  background: linear-gradient(135deg, #5a5a5a, #1f1f1f);
  box-shadow: 0 8px 18px rgba(31, 31, 31, 0.4);
}

.service-block[data-service-id="spotify"] .service-icon-wrap {
  background: linear-gradient(135deg, #1db954, #1ed760);
  box-shadow: 0 8px 18px rgba(29, 185, 84, 0.35);
}

.service-block[data-service-id="amazon"] .service-icon-wrap {
  background: linear-gradient(135deg, #232f3e, #ff9900);
  box-shadow: 0 8px 18px rgba(255, 153, 0, 0.35);
}

.service-block[data-service-id="slack"] .service-icon-wrap {
  background: linear-gradient(135deg, #4a154b, #36c5f0);
  box-shadow: 0 8px 18px rgba(74, 21, 75, 0.4);
}

.service-block[data-service-id="github"] .service-icon-wrap {
  background: linear-gradient(135deg, #000000, #333333);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.service-block[data-service-id="dropbox"] .service-icon-wrap {
  background: linear-gradient(135deg, #007ee5, #00a2ff);
  box-shadow: 0 8px 18px rgba(0, 126, 229, 0.35);
}

.service-block[data-service-id="box"] .service-icon-wrap {
  background: linear-gradient(135deg, #0061d5, #3a8bff);
  box-shadow: 0 8px 18px rgba(0, 97, 213, 0.35);
}

.service-block[data-service-id="youtube"] .service-icon-wrap {
  background: linear-gradient(135deg, #ff0000, #ff6a6a);
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.35);
}

.service-block[data-service-id="evernote"] .service-icon-wrap {
  background: linear-gradient(135deg, #2dbf73, #4fd58a);
  box-shadow: 0 8px 18px rgba(45, 191, 115, 0.35);
}

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

.service-header h3 {
  flex-grow: 1;
  margin: 0;
  font-size: 1.2rem;
}

.service-title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.service-summary {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

[data-theme="dark"] .service-summary {
  color: rgba(255, 255, 255, 0.7);
}

.service-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(25, 118, 210, 0.1);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.service-status-indicator[hidden] {
  display: none;
}

.service-status-indicator::before {
  content: '✓';
  font-weight: 700;
}

.expand-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-block.expanded .expand-icon {
  transform: rotate(45deg);
}

.service-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.service-block.expanded .service-content {
  padding: 0 1.5rem 1.75rem;
  max-height: 3000px;
  border-top: 1px solid rgba(25, 118, 210, 0.12);
}

.service-block.service-complete {
  border-color: rgba(255, 140, 66, 0.65);
  box-shadow: none;
}

.service-block.service-complete .service-header {
  background-color: rgba(255, 140, 66, 0.08);
}

.service-content-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  align-items: start;
  background: linear-gradient(145deg, rgba(25, 118, 210, 0.05), rgba(255, 255, 255, 0.95));
  border-radius: calc(var(--border-radius) - 2px);
  padding: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-overview {
  background: rgba(25, 118, 210, 0.08);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-overview h4 {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
}

.service-overview ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-overview ul li {
  margin-bottom: 0.4rem;
}

.service-overview ul li:last-child {
  margin-bottom: 0;
}

.service-tip {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(51, 51, 51, 0.85);
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-step {
  border-top: 1px solid rgba(25, 118, 210, 0.12);
  padding-top: 1rem;
}

.service-step:first-child {
  border-top: none;
  padding-top: 0;
}

.service-step h4 {
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.service-step ul,
.service-step ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--dark-gray);
  font-size: 0.96rem;
  line-height: 1.7;
}

.service-step li {
  margin-bottom: 0.55rem;
}

.service-step li:last-child {
  margin-bottom: 0;
}

.service-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
}

.service-link:hover {
  color: var(--secondary-dark);
}

.service-progress {
  display: flex;
}

.service-progress-toggle {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.55rem 1.1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.service-progress-toggle[aria-pressed="true"],
.service-progress-toggle:hover {
  background-color: var(--primary-color);
  color: white;
}

[data-theme="dark"] .service-hide-completed,
[data-theme="dark"] .service-reset-progress {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

[data-theme="dark"] .service-hide-completed[aria-pressed="true"] {
  background-color: var(--primary-light);
  color: #0b1c33;
}

[data-theme="dark"] .service-hide-completed:hover,
[data-theme="dark"] .service-reset-progress:hover {
  background-color: var(--primary-light);
  color: #0b1c33;
}

[data-theme="dark"] .service-block {
  background-color: #1b1b1b;
  border-color: rgba(76, 154, 255, 0.2);
}

[data-theme="dark"] .service-block.expanded {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

[data-theme="dark"] .service-block:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .service-header {
  background-color: transparent;
}

[data-theme="dark"] .service-content-inner {
  background: linear-gradient(145deg, rgba(76, 154, 255, 0.08), rgba(18, 18, 18, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .service-status-indicator {
  background-color: rgba(76, 154, 255, 0.25);
  color: var(--secondary-light);
}

[data-theme="dark"] .service-overview {
  background: rgba(76, 154, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .service-overview ul {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .service-overview h4,
[data-theme="dark"] .service-step h4 {
  color: var(--secondary-light);
}

[data-theme="dark"] .service-overview ul,
[data-theme="dark"] .service-step ul,
[data-theme="dark"] .service-step ol,
[data-theme="dark"] .service-tip {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .service-step {
  border-top: 1px solid rgba(76, 154, 255, 0.15);
}

[data-theme="dark"] .service-link {
  color: var(--secondary-light);
}

[data-theme="dark"] .service-link:hover {
  color: white;
}

[data-theme="dark"] .service-block.service-complete {
  border-color: rgba(255, 140, 66, 0.6);
}

[data-theme="dark"] .service-block.service-complete .service-header {
  background-color: rgba(255, 140, 66, 0.12);
}

[data-theme="dark"] .service-progress-toggle {
  border-color: var(--secondary-light);
  color: var(--secondary-light);
}

[data-theme="dark"] .service-progress-toggle[aria-pressed=\"true\"],
[data-theme=\"dark\"] .service-progress-toggle:hover {
  background-color: var(--secondary-light);
  color: #0b1c33;
}
/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

/* Theme Toggle */
.theme-toggle-container {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.theme-toggle {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 44px;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-dark);
  transition: var(--transition);
  border-radius: 30px;
}

.theme-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

.theme-toggle input:checked + .theme-toggle-slider {
  background-color: #121212;
}

.theme-toggle input:checked + .theme-toggle-slider:before {
  transform: translateX(20px);
}

.theme-toggle-slider:after {
  content: "☀️";
  position: absolute;
  left: 6px;
  top: 2px;
  font-size: 12px;
  transition: var(--transition);
  opacity: 1;
}

.theme-toggle input:checked + .theme-toggle-slider:after {
  content: "🌙";
  left: 26px;
  opacity: 1;
}

/* Footer */
.site-footer {
  background-color: #263238;
  color: white;
  padding: 3.5rem 0 1.5rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.logo-small {
  height: 200px;
  width: auto;
}

/* Footer logo is always light version regardless of theme */

.footer-links h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-link {
  color: rgba(255, 255, 255, 0.7);
}

.copyright a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.copyright a:hover {
  color: white;
  text-decoration: underline;
}

.privacy-link:hover {
  color: white;
}

/* Animation utility classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Grid Layouts */
@media (min-width: 768px) {
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .about-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .site-header {
    text-align: center;
  }
  
  .logo-container {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .main-nav ul {
    justify-content: center;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .add-to-calendar, .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}
.service-block.expanded:hover {
  transform: none;
}
