/* Base styles */
:root {
  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --surface-3: #e9ecef;
  --text-1: #212529;
  --text-2: #495057;
  --brand: #0066ff;
}

.guide-content {
  padding: 4rem 0;
}

.guide-section {
  margin-bottom: 4rem;
}

.guide-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

/* Guide Cards */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guide-card {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

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

.guide-icon {
  background: var(--surface-3);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-icon i {
  font-size: 24px;
  color: var(--brand);
}

.guide-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.guide-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.5;
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: auto;
}

.learn-more i {
  transition: transform 0.2s ease-in-out;
}

.guide-card:hover .learn-more i {
  transform: translateX(4px);
}

/* Template Cards */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.template-card {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.template-icon {
  background: var(--surface-3);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-icon i {
  font-size: 20px;
  color: var(--brand);
}

.template-content {
  flex: 1;
}

.template-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.template-content p {
  margin: 0 0 1rem;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.5;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.download-link i {
  font-size: 16px;
}

/* Important Notice */
.important-notice {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--brand);
}

.important-notice h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
}

.important-notice i {
  color: var(--brand);
  font-size: 1.2rem;
}

.important-notice p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-2);
}

.important-notice ul {
  margin: 0;
  padding-left: 1.5rem;
}

.important-notice li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}

.important-notice li:last-child {
  margin-bottom: 0;
}

/* Download Section */
.download-section {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.download-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-2);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .guide-content {
    padding: 2rem 0;
  }
  
  .guide-section {
    margin-bottom: 2rem;
  }
  
  .guide-section h2 {
    font-size: 1.5rem;
  }
} 