/* CoachingUP shared template stylesheet, extracted 2026-09-16 from the identical inline block on the article-template pages. Page-specific rules stay inline on each page, after this file. */
    :root {
      --primary: #3498db;
      --primary-light: #5dade2;
      --primary-dark: #2874a6;
      --secondary: #27ae60;
      --secondary-light: #58d68d;
      --secondary-dark: #196f3d;
      --accent: #f39c12;
      --accent-light: #f8c471;
      --accent-dark: #b9770e;
      --dark: #2c3e50;
      --light: #f5f5f5;
      --light-accent: #ecf0f1;
      --text: #333333;
      --white: #ffffff;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text);
      background-color: var(--light);
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Raleway', sans-serif;
      margin-bottom: 1rem;
      color: var(--dark);
    }
    
    h1 {
      font-size: 2.5rem;
      line-height: 1.2;
    }
    
    h2 {
      font-size: 2rem;
      margin-top: 2rem;
    }
    
    p {
      margin-bottom: 1.5rem;
    }
    
    a {
      color: var(--primary);
      text-decoration: none;
      transition: var(--transition);
    }
    
    a:hover {
      color: var(--primary-dark);
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .btn {
      display: inline-block;
      padding: 0.7rem 1.8rem;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50px;
      font-weight: 500;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      box-shadow: var(--shadow);
    }
    
    .btn:hover {
      background-color: var(--primary-dark);
      color: var(--white);
      transform: translateY(-3px);
    }
    
    .btn-secondary {
      background-color: var(--secondary);
    }
    
    .btn-secondary:hover {
      background-color: var(--secondary-dark);
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background-color: var(--white);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark);
      display: flex;
      align-items: center;
    }
    
    .logo img {
      height: 50px;
      width: auto;
      margin-right: 0.5rem;
    }
    
    .nav-links {
      display: flex;
      align-items: center;
    }
    
    .nav-links ul {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 2rem;
    }
    
    .nav-links a {
      font-weight: 500;
      position: relative;
      color: var(--dark);
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--primary);
      transition: var(--transition);
    }
    
    .nav-links a:hover:after {
      width: 100%;
    }
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .mobile-menu {
      display: none;
      cursor: pointer;
    }
    
    button.mobile-menu { background: none; border: 0; padding: 0; }
    .mobile-menu span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: var(--dark);
      margin: 5px;
      transition: var(--transition);
    }
    
    /* Article Section */
    .article {
      padding: 8rem 0 5rem;
      background-color: var(--white);
    }
    
    .article-header {
      margin-bottom: 3rem;
      text-align: center;
    }
    
    .article-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .article-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: #666;
    }
    
    .article-meta span {
      margin: 0 1rem;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
    }
    
    .article-meta i {
      margin-right: 0.5rem;
      color: var(--primary);
    }
    
    .article-image {
      width: 100%;
      max-width: 700px;
      margin: 0 auto 2rem;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .article-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .article-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
    }
    
    .article-content p {
      margin-bottom: 1.5rem;
    }
    
    .article-content h2 {
      margin-top: 2.5rem;
      margin-bottom: 1.2rem;
      font-size: 1.8rem;
    }
    
    .article-content ul, 
    .article-content ol {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
    }
    
    .article-content li {
      margin-bottom: 0.5rem;
    }
    
    .article-content blockquote {
      border-left: 4px solid var(--primary);
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      background-color: var(--light);
      font-style: italic;
    }
    
    .article-content blockquote p:last-child {
      margin-bottom: 0;
    }
    
    .article-content .highlight {
      background-color: var(--primary-light);
      color: var(--white);
      padding: 0.2rem 0.4rem;
      border-radius: 3px;
    }
