@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #113f4e;
    --secondary-color: #113f4e;
    --accent-color: #00737D;
    --bg-light: #eff7fa;
    --bg-white: #FFFFFF;
    --bg-section: #f5fbfd;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6C6C6C;
    --border-color: #d8e9f0;

    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 3px 8px rgba(0, 0, 0, 0.12);

    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 10px;

    --transition-speed: 0.25s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    padding-top: 80px;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
}

h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.375rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: #0D3240;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-medium);
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #005A63;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background-color: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.headroom {
    will-change: transform;
    transition: transform 0.3s ease;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all var(--transition-speed);
    font-weight: 500;
    color: white;
}

.lang-switcher button.active {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-align: center;
    padding: 0 10px;
    width: 100%;
}

.main-nav a:hover {
    color: white;
    opacity: 0.85;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width var(--transition-speed);
}

.main-nav a:hover:after {
    width: 100%;
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 200px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.main-nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.main-nav .dropdown-content a {
    display: block;
    padding: 12px 15px;
    white-space: nowrap;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    text-decoration: none;
}

.main-nav .dropdown-content a:last-child {
    border-bottom: none;
}

.main-nav .dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 50px 0;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.page-header h1 {
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs span {
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    background-image: url('/IMG/hero/phone_v.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: auto;
    padding: 40px 0;
}

.hero-content {
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    background: rgba(17, 63, 78, 0.9);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow-hover);
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
}

.hero-buttons .btn {
    padding: 16px 24px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

/* About Brief Section */
.about-brief {
    background-color: var(--bg-light);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 25px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 40px 25px;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-description {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-action {
    text-align: center;
    margin-top: 30px;
}

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.7;
}

.services-action {
    text-align: center;
    margin-top: 30px;
}

.services-categories .categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform var(--transition-speed);
    height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
}

.testimonial-slide {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-medium);
}

.testimonial-content p {
    position: relative;
}

.testimonial-content p:before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.prev-slide,
.next-slide {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.prev-slide:hover,
.next-slide:hover {
    background-color: var(--accent-color);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Blog Preview */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-action {
    text-align: center;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-section);
    color: var(--text-dark);
    padding: 60px 0;
}

.cta-content {
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    margin: 0;
    padding: 14px 28px;
    flex-shrink: 0;
}

.cta-section .btn {
    background-color: var(--accent-color);
    color: white;
}

.cta-section .btn:hover {
    background-color: #005A63;
}

/* Forms */
.contact-form {
    text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    background-color: rgba(239, 247, 250, 0.3);
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition-speed);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(17, 63, 78, 0.08);
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-medium);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: rgba(239, 247, 250, 0.3);
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234A4A4A'><path d='M6 9L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-group select option {
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    color: var(--text-dark);
}

/* CTA Section Form Styles */
.cta-section .contact-form input,
.cta-section .contact-form select,
.cta-section .contact-form textarea {
    padding: 14px 16px;
    border: 1px solid rgba(17, 63, 78, 0.2);
    background-color: white;
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-speed);
}

.cta-section .contact-form input::placeholder,
.cta-section .contact-form select::placeholder,
.cta-section .contact-form textarea::placeholder {
    color: var(--text-medium);
}

.cta-section .contact-form input:focus,
.cta-section .contact-form select:focus,
.cta-section .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(17, 63, 78, 0.08);
}

/* Messenger Buttons */
.messenger-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    color: white;
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.messenger-btn:hover {
    transform: scale(1.1);
}

.messenger-btn.telegram {
    background-color: #0088cc;
}

.messenger-btn.whatsapp {
    background-color: #25D366;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    margin-bottom: 40px;
}

.footer-logo {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin: 0 auto;
}

.footer-menu {
    display: contents;
}

.footer-menu .footer-column:nth-child(1) {
    grid-column: 1;
}

.footer-menu .footer-column:nth-child(2) {
    grid-column: 2;
}

.footer-menu .footer-column:nth-child(3) {
    grid-column: 3;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-speed);
    display: block;
    padding: 2px 0;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-contacts {
    grid-column: 4;
    align-self: start;
}

.footer-contacts h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-contacts h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1rem;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-speed);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: white;
}

.offer {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.offer h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.offer h2 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.offer p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
}

.offer ol {
    counter-reset: item;
    padding-left: 0;
}

.offer ol>li {
    display: block;
    margin-bottom: 30px;
    padding-left: 0;
    position: relative;
}

.offer ol>li:before {
    font-weight: bold;
    font-size: 1.2rem;
    color: #3498db;
    position: absolute;
    left: -30px;
    top: 0;
}

.offer ul {
    padding-left: 20px;
    margin: 15px 0;
    list-style: none;
}

.offer ul li {
    margin-bottom: 8px;
    position: relative;
}

.offer ul li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Стили для загрузки */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 0 10px;
    }

    .offer {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .offer h1 {
        font-size: 1.5rem;
    }

    .offer h2 {
        font-size: 1.2rem;
    }

    .offer ol>li:before {
        left: -25px;
    }
}

/* Адаптивность для телефонов */
@media (max-width: 480px) {
    .container {
        padding: 10px;
        margin: 0 5px;
    }

    .offer {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .page-header {
        padding: 20px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .offer h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .offer h2 {
        font-size: 1.1rem;
        padding-left: 10px;
    }

    .offer ol>li:before {
        left: -20px;
        font-size: 1rem;
    }

    .offer ul {
        padding-left: 15px;
    }

    .offer ul li:before {
        left: -10px;
    }

    .offer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 320px) {
    .offer {
        padding: 15px 10px;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .offer h1 {
        font-size: 1.2rem;
    }

    .offer h2 {
        font-size: 1rem;
    }
}