/* Start custom CSS */:root {
    --navy: #1a2744;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --light-gray: #f0eff0;
    --text-dark: #1a2744;
    --text-body: #444444;
    --text-muted: #777777;
	--border: #e2ddd4;
  }
  .blog-wrap {
    margin: 0 auto;
  }
  .blog-hero {
    background: var(--navy);
    color: var(--white);
    padding: 56px 48px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
  }
  .blog-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    border: 2px solid rgba(201,168,76,0.2);
    border-radius: 50%;
  }
  .blog-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border: 2px solid rgba(201,168,76,0.1);
    border-radius: 50%;
  }
  .blog-hero h1 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--white);
  }
  .blog-hero h1 span { color: var(--gold); }
  .blog-byline {
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .blog-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    line-height: 1.8;
  }
  .gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 28px 0;
  }
  .blog-intro {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 48px;
    padding: 32px 36px;
    border-left: 4px solid var(--gold);
    background: var(--off-white);
  }
  .blog-section {
      padding-top:30px;
    margin-bottom: 52px;
  }
  .blog-section h2 {
    font-size: clamp(20px, 3vw, 26px);
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .blog-section h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 28px 0 10px;
    font-weight: 600;
  }
  .blog-section p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
  }
  .treatment-card {
    border: 1px solid #e8e5df;
    border-radius: 6px;
    padding: 32px 36px;
    margin: 28px 0;
    background: var(--white);
    position: relative;
  }
  .treatment-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffdf6 0%, #fff 100%);
  }
  .treatment-card .card-badge {
    position: absolute;
    top: -14px; left: 28px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
  }
  .treatment-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 0 0 12px;
  }
  .treatment-card p {
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .honest-box {
    background: var(--light-gray);
    border-radius: 4px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.75;
  }
  .honest-box strong {
    color: var(--navy);
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .fit-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
  }
  .fit-list li {
    font-size: 15px;
    padding: 5px 0 5px 24px;
    position: relative;
    color: var(--text-body);
  }
  .fit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
  }
  .comparison-wrap {
    margin: 36px 0;
    overflow-x: auto;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(26,39,68,0.08);
  }
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    min-width: 580px;
  }
  .comparison-table thead tr {
    background: var(--navy);
    color: var(--white);
  }
  .comparison-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 13px;
    text-transform: uppercase;
  }
  .comparison-table thead th:first-child { width: 26%; }
  .comparison-table thead th.col-ariessence {
    background: var(--gold);
    color: var(--navy);
  }
  .comparison-table tbody tr {
    border-bottom: 1px solid #e8e5df;
  }
  .comparison-table tbody tr:nth-child(even) {
    background: var(--off-white);
  }
  .comparison-table tbody td {
    padding: 13px 16px;
    vertical-align: top;
    line-height: 1.5;
    color: var(--text-body);
  }
  .comparison-table tbody td:first-child {
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
  }
  .comparison-table tbody td.col-ariessence {
    background: rgba(201,168,76,0.07);
    font-weight: 600;
    color: var(--navy);
  }
  .check { color: var(--gold); font-weight: 700; margin-right: 4px; }
  .treat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  @media (max-width: 580px) { .treat-grid { grid-template-columns: 1fr; } }
  .treat-item {
    background: var(--off-white);
    border-left: 3px solid var(--gold);
    padding: 18px 20px;
    border-radius: 0 4px 4px 0;
  }
  .treat-item h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .treat-item p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: var(--text-body);
  }
 .why-vanity {
    background: var(--navy);
    color: var(--white);
    padding: 40px 44px;
    border-radius: 6px;
    margin: 36px 0;
  }
  .why-vanity h2 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .why-list {
    list-style: none;
    padding: 0;
  }
  .why-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
  }
  .why-list li:last-child { border-bottom: none; }
  .why-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    top: 12px;
  }
  .why-list li strong { color: var(--gold-light); }
  .faq-section { margin: 40px 0 0; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
	letter-spacing:normal;
	text-transform:none;
	line-height:1.3;
  }
  .faq-q:hover { background: #b8b8b8;color: #333;font-weight: 500; }
  .faq-q.active { background: var(--navy); color: var(--white); }
  .faq-q .chevron {
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
    color: var(--gold);
  }
  .faq-q.active .chevron { transform: rotate(180deg); }
  .faq-a {
    display: none;
    padding: 20px 24px;
    background: var(--gray);
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    border-top: 1px solid var(--border);
  }
  .faq-a.open { display: block; }
  .cta-block {
    background: linear-gradient(135deg, var(--navy) 0%, #0f1a35 100%);
    color: var(--white);
    text-align: center;
    padding: 52px 40px;
    border-radius: 6px;
    margin: 48px 0 36px;
  }
  .cta-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 14px;
  }
  .cta-block p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.75;
  }
  .cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    margin: 6px;
    transition: background 0.2s;
  }
  .cta-btn:hover { background: #e8c96a; }
  .cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
  }
  .cta-btn.secondary:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
  .cta-phone {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }
  .cta-phone a { color: var(--gold); text-decoration: none; font-weight: 700; }
  .img-placeholder {
    width: 100%;
    background: var(--light-gray);
    border: 2px dashed #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 24px 0;
  }
   @media (max-width:767.95px) { 
       .blog-hero {padding:46px 28px;}
       .blog-intro,.treatment-card{padding:32px 26px;}
       .why-vanity{padding:40px 24px;}
       .why-list{margin-left:8px;}
       .cta-block{padding:52px 20px;}
   }/* End custom CSS */