/* About Page Specific Styles */
.content-section {
    margin: 4rem 0;
    padding: 0 1rem;
  }
  
  .content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
  }
  
  .content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .content-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
  }
  
  /* Philosophy cards */
  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }
  
  .philosophy-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
  }
  
  .philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
  }
  
  .card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .philosophy-card p {
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* Tools list */
  .tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }
  
  .tool-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s ease;
  }
  
  .tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
  }
  
  .tool-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .tool-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .tool-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .tool-link:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
  }
  
  /* Contact section */
  .contact-section {
    margin: 4rem 0;
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    border: 1px solid var(--border-color);
  }
  
  .contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }
  
  .contact-option {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .contact-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .contact-option h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .contact-option p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  
  .contact-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .contact-link:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .content-section {
      margin: 3rem 0;
    }
    
    .philosophy-grid,
    .tools-list,
    .contact-options {
      grid-template-columns: 1fr;
    }
    
    .contact-section {
      padding: 1.5rem;
    }
  }