<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("Title");
?>/* ===================================
   SEO Content Typography Improvements
   Author: СтройЛюкс
   Date: 2025-12-09
   =================================== */
/* CSS Variables */
:root {
    --primary-color: #d4a046;
    --text-dark: #1a1a1a;
    --text-main: #333;
    --text-secondary: #666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
}
/* Base Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
}
/* Headings */
h1 {
    font-size:clamp(22px, 3.5vw, 32px)
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;/* Fix ALL CAPS text - Better SEO typography */
/* Service page titles and buttons */
.service-block h3,
.service-block a h3,
.btn-primary,
.services-item a,
.services-wrap a,
[href*="services"] h3 {
    text-transform: capitalize !important;
}

/* Footer buttons */
footer a[href*="telegram"],
footer a[href*="whatsapp"],
.footer-button {
    text-transform: capitalize !important;
}<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>