  :root {
    --accent: #1a5c3a;
    --accent-light: #e8f5ee;
    --accent-mid: #2e7d5e;
    --gold: #b8860b;
    --gold-light: #fdf8e8;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-soft: #f9fafb;
    --bg-white: #ffffff;
    --red-accent: #c0392b;
    --blue-accent: #1a4a7a;
    --blue-light: #eff6ff;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: #f4f4f0;
    font-size: 17px;
				width: 100%;
  }

  .site-header {
    background: var(--accent);
    padding: 12px 0;
    text-align: center;
  }
  .site-header span {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .hero {
    background: linear-gradient(135deg, #0d3d26 0%, #1a5c3a 50%, #0f4a30 100%);
    padding: 72px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a7f3d0;
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(167,243,208,0.3);
  }
  .hero h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(28px, 5vw, 40px);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
    max-width: 820px;
    margin: 0 auto 16px;
    position: relative;
  }
  .hero-subtitle {
    font-family: 'Arial', sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }
  .hero-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-meta-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
  }
  .hero-meta-item .val {
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
  }
  .hero-meta-item .lbl {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  .article-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 20px 80px;
  }

  .byline {
    background: var(--bg-white);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Arial', sans-serif;
  }
  .byline-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
  }
  .byline-text { font-size: 13px; color: var(--text-muted); }
  .byline-text strong { color: var(--text-dark); font-size: 14px; }

  .toc {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
  }
  .toc h2 {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 700;
  }
  .toc ol { padding-left: 20px; }
  .toc ol li { margin-bottom: 6px; }
  .toc ol li a {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
  }
  .toc ol li a:hover { text-decoration: underline; }

  h2.section-title {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin: 52px 0 16px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 14px;
  }
  h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
  }

  h3.sub-title {
    font-family: 'Georgia', serif;
    font-size: 21px;
    color: #000;
    margin: 32px 0 12px;
  }

  p { margin-bottom: 20px; color: var(--text-mid); }

  .highlight-box {
    background: var(--accent-light);
    border: 1px solid #a7d5b8;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
  }
  .highlight-box p { margin: 0; color: var(--text-dark); font-weight: 500; }
  .highlight-box .icon { font-size: 20px; margin-bottom: 8px; display: block; }

  .answer-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue-accent);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
  }
  .answer-box .q {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--blue-accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  .answer-box p { margin: 0; color: var(--text-dark); font-size: 16px; }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    font-family: 'Arial', sans-serif;
  }
  .price-table thead {
    background: #19407d;
    color: white;
  }
  .price-table thead th {
    padding: 14px 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0px;
}
  .price-table tbody tr { border-bottom: 1px solid var(--border); }
  .price-table tbody tr:last-child { border-bottom: none; }
  .price-table tbody tr:nth-child(even) { background: var(--bg-soft); }
  .price-table tbody td {
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text-mid);
  }
  .price-table tbody td.highlight { font-weight: 600; color: var(--text-dark); }
  .price-table tbody td.green { color: var(--accent); font-weight: 600; }
  .price-table tbody td.gold { color: var(--gold); font-weight: 600; }

  .metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 28px 0;
  }
  .metric-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
  }
  .metric-card .val {
    font-family: 'Arial', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #19407d;
    display: block;
    margin-bottom: 6px;
  }
  .metric-card .lbl {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 28px 0;
  }
  .comp-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    font-family: 'Arial', sans-serif;
  }
  .comp-card.featured {
    border-color: #19407d;
    border-width: 2px;
    position: relative;
  }
  .comp-card.featured::before {
    content: 'TVS Emerald Altura';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #19407d;
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .comp-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  .comp-card .price { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
  .comp-card .psf { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
  .comp-card ul { list-style: none; font-size: 12px; color: var(--text-muted); }
  .comp-card ul li { padding: 4px 0; border-bottom: 1px solid var(--border); }
  .comp-card ul li:last-child { border: none; }
  .comp-card ul li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

  .amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin: 24px 0;
  }
  .amenity-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .amenity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  .rera-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 28px 0;
    font-family: 'Arial', sans-serif;
  }
  .rera-box h4 {
    color: #19407d;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .rera-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .rera-row { font-size: 13px; }
  .rera-row .key { color: #19407d; font-weight: 600; }
  .rera-row .value { color: #000; word-break: break-all; }

  .faq-section { margin: 28px 0; }
  .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .faq-q {
    padding: 18px 20px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-q::after { content: '+'; font-size: 20px; color: var(--accent); font-weight: 300; }
  .faq-a {
    padding: 0 20px 18px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  @media (max-width: 600px) { .location-grid { grid-template-columns: 1fr; } }
  .loc-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    font-family: 'Arial', sans-serif;
  }
  .loc-item .dest { font-weight: 700; font-size: 14px; color: var(--text-dark); }
  .loc-item .time { font-size: 22px; font-weight: 700; color: var(--accent); margin: 4px 0; }
  .loc-item .note { font-size: 12px; color: var(--text-muted); }

  .expert-opinion {
    background: var(--bg-white);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 22px 26px;
    margin: 32px 0;
    position: relative;
  }
  .expert-opinion::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
  }
  .expert-text {
    font-style: italic;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 16px;
    line-height: 1.7;
  }
  .expert-attr {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    padding-left: 16px;
  }

  .warning-box {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 18px 22px;
    margin: 24px 0;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #78350f;
  }
  .warning-box strong { font-weight: 700; }

  .conclusion-box {
    background: #19407d;
    border-radius: 16px;
    padding: 36px 32px;
    margin: 48px 0 32px;
    text-align: center;
    color: white;
  }
  .conclusion-box h2 {
    font-family: 'Georgia', serif;
    font-size: 26px;
    color: white;
    margin-bottom: 16px;
  }
  .conclusion-box p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 24px;
  }
  .cta-btn {
    display: inline-block;
    background: white;
    color: #19407d;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  .disclaimer {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 24px 0;
  }

  .breadcrumb {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    padding: 16px 0;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--accent); text-decoration: none; }
  .breadcrumb span { color: var(--text-muted); }

  .last-updated {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  blockquote {
    border-left: 3px solid var(--border);
    padding-left: 20px;
    margin: 24px 0;
    color: var(--text-muted);
    font-style: italic;
  }

  ul.styled, ol.styled {
    padding-left: 22px;
    margin-bottom: 20px;
  }
  ul.styled li, ol.styled li {
    margin-bottom: 8px;
    color: var(--text-mid);
    font-size: 16px;
  }

  .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 28px; }
  .tag {
    background: var(--accent-light);
    color: var(--accent);
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
  }

  .progress-bar-row { margin-bottom: 16px; }
  .progress-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 6px;
  }
  .progress-track {
    background: var(--border);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
  }
  .progress-fill.gold { background: var(--gold); }
  .progress-fill.blue { background: var(--blue-accent); }

  footer {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 32px 24px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    line-height: 1.7;
  }
  footer a { color: #6ee7b7; text-decoration: none; }

  @media (max-width: 640px) {
    .rera-grid { grid-template-columns: 1fr; }
    .hero { padding: 48px 16px 40px; }
    .hero-meta { gap: 12px; }
    h2.section-title { font-size: 24px; }
  }

  @media print {
    .site-header, footer { display: none; }
    .hero { background: #1a5c3a !important; -webkit-print-color-adjust: exact; }
  }
		
		
@media (max-width: 640px) {

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border);
  }

  .price-table td {
    text-align: right;
    padding: 10px 12px;
    position: relative;
    border-bottom: 1px solid var(--border);
  }

  .price-table td:last-child {
    border-bottom: none;
  }

  .price-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 10px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
  }
}


@media (max-width: 640px) {
  .price-table tbody td {
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

  .price-table thead th {
    font-size: 11px;
    padding: 10px;
  }
}		
		
		