/* TrueVital - Modern Minimalist Styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #3498db;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-visual {
  margin-top: 2rem;
}

.hero-icon {
  font-size: 4rem;
  opacity: 0.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #3498db;
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ecf0f1;
  color: #2c3e50;
}

.btn-secondary:hover {
  background: #d5dbdb;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}

/* Guides Section */
.guides {
  padding: 4rem 0;
}

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

.guide-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guide-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.guide-card p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

/* CTA Block */
.cta-block {
  background: #3498db;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-block .btn-primary {
  background: white;
  color: #3498db;
}

.cta-block .btn-primary:hover {
  background: #f8f9fa;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
}

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

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.benefit-item p {
  color: #5a6c7d;
}

/* Reviews Section */
.reviews {
  background: #f8f9fa;
  padding: 4rem 0;
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card p {
  color: #5a6c7d;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: #2c3e50;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.form-wrapper p {
  color: #5a6c7d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

/* Page Headers */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #5a6c7d;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 2rem;
}

.blog-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.blog-card p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.blog-date,
.blog-category {
  background: #ecf0f1;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* Article Content */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.article-body {
  line-height: 1.8;
}

.article-intro {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  font-weight: 500;
}

.article-body h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 2.5rem 0 1rem 0;
}

.article-body h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 2rem 0 1rem 0;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: #5a6c7d;
}

.article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #5a6c7d;
}

.article-cta {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.article-cta p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #5a6c7d;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #5a6c7d;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
}

.next-steps {
  text-align: left;
  margin: 2rem 0;
}

.next-steps h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.next-steps ul {
  padding-left: 1.5rem;
}

.next-steps li {
  color: #5a6c7d;
  margin-bottom: 0.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.additional-resources {
  margin-top: 2rem;
  text-align: left;
}

.additional-resources h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  transition: background-color 0.3s ease;
}

.resource-link:hover {
  background: #e9ecef;
}

.resource-icon {
  font-size: 1.5rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.last-updated {
  color: #7f8c8d;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: #5a6c7d;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-section li {
  color: #5a6c7d;
  margin-bottom: 0.5rem;
}

.legal-cta {
  text-align: center;
  margin-top: 3rem;
}

/* About Page */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.about-section p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.features-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.feature-item h3 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: #5a6c7d;
}

.cta-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 2rem 0;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-slogan {
  color: #bdc3c7;
  font-style: italic;
  line-height: 1.4;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .guides-grid,
  .benefits-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-header h1 {
    font-size: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .guide-card,
  .contact-form,
  .thank-you-content {
    padding: 1.5rem;
  }

  .nav-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }
}
