/* ==========================================
   УК ЛАД - Основной стилевой файл
   Используются шрифты из брендбука:
   - Cormorant Garamond (заголовки)
   - Involve (текст)
   ========================================== */

/* Подключение шрифтов (Google Fonts аналоги брендбуку) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Переменные цветов бренда */
:root {
    --primary-color: #1e3a5f;      /* Основной синий - доверие */
    --primary-light: #2d5a8f;      /* Светлый синий */
    --primary-dark: #0f2845;       /* Темный синий */
    --accent-color: #4a90e2;       /* Акцентный голубой */
    --success-color: #27ae60;      /* Зеленый - успех */
    --warning-color: #f39c12;      /* Оранжевый - внимание */
    --text-color: #333333;         /* Основной текст */
    --text-light: #666666;         /* Светлый текст */
    --text-lighter: #999999;       /* Очень светлый текст */
    --bg-color: #ffffff;           /* Белый фон */
    --bg-light: #f8f9fa;           /* Светлый фон */
    --bg-gray: #e9ecef;            /* Серый фон */
    --border-color: #dee2e6;       /* Границы */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Involve', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* Контейнер */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

.header-contacts {
    flex-shrink: 0;
}

.phone-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.phone-link:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-content {
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-buttons .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.hero-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   ADVANTAGES SECTION
   ========================================== */
.advantages {
    background-color: var(--bg-light);
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-item:hover {
    box-shadow: var(--shadow-md);
}

.advantage-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    min-width: 60px;
}

.advantage-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.advantage-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   CONTACTS SECTION
   ========================================== */
.contacts {
    background-color: white;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--text-color);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   NEWS SECTION
   ========================================== */
.news {
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    min-width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.news-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.news-month {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.news-year {
    font-size: 12px;
    opacity: 0.8;
}

.news-content {
    flex: 1;
}

.news-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: var(--accent-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 10px;
    color: var(--primary-color);
}

.news-more {
    text-align: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    padding: 40px 20px;
}

.mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav a {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-contacts {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-date {
        min-width: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 15px;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
    }
}

/* ==========================================
   BUTTON STYLES (from Magic theme)
   ========================================== */
span.button {
    text-align: center;
    cursor: pointer;
    background-color: #1B46C8;
    display: inline-block;
    padding: 2px 6px 3px;
    border-width: 1px;
    border-style: outset;
    border-color: #AAA;
    border-radius: 4px;
    color: #FFFFFF;
}

span.button:hover {
    background-color: #9BB6A8;
    color: #C80064;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ==========================================
   USER AVATAR & DROPDOWN MENU
   ========================================== */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-menu {
    position: relative;
}

.user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
    cursor: pointer;
}

.user-avatar:hover,
.user-menu.active .user-avatar {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 5px 0;
}

.user-menu.active .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

.user-dropdown a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.user-dropdown a:last-child {
    color: var(--warning-color);
}

.user-dropdown a:last-child:hover {
    background-color: #fff3cd;
    color: #d35400;
}


/* ==========================================
    Beautiful Table Styles (adapted from Magic theme)
    ========================================== */

/* Красивая таблица */
.table {
    border-collapse: separate;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background: #fefefe;
    margin: 10px 5px;
    border-spacing: 0;
    width: auto;
}

.table tr:first-child th:first-child {
    -moz-border-radius-topleft: var(--border-radius);
    -webkit-border-top-left-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
}

.table tr:first-child th:last-child {
    -moz-border-radius-topright: var(--border-radius);
    -webkit-border-top-right-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.table tr:last-child td:first-child {
    -moz-border-radius-bottomleft: var(--border-radius);
    -webkit-border-bottom-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.table tr:last-child td:last-child {
    -moz-border-radius-bottomright: var(--border-radius);
    -webkit-border-bottom-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.table th {
    padding: 8px 12px;
    font-weight: 600;
    text-align: center;
    color: white;
    background-color: var(--primary-color) !important;
    font-size: 13px;
    text-transform: uppercase;
}

.table td {
    padding: 8px 12px;
    height: auto;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.table tr:hover {
    background-color: var(--accent-color) !important;
    color: white !important;
}

.table tr:hover a {
    color: white !important;
}

.table .header {
    cursor: pointer;
    padding: 5px 20px 5px 5px;
    background-image: url(/themes/magic/img/tbl_sort_bg.gif);
    background-position: right center;
    background-repeat: no-repeat;
}

.table .headerSortUp {
    background-image: url(/themes/magic/img/tbl_sort_asc.gif);
}

.table .headerSortDown {
    background-image: url(/themes/magic/img/tbl_sort_desc.gif);
}

/* Modal */
.magicmodal		{ border:1px solid #AAA; background-color: #FFF; border-radius:5px; padding: 10px; box-shadow: 0 0 5px rgba(0,0,0,0.5);
				left: 50%; width: auto; min-width: 500px; max-width: 1000px; position: fixed; top: 1vh; max-height: 95vh;  overflow-y: auto; z-index: 1001;	transform: translate(-50%, 0%);}


/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================
   PRINT STYLES
   ========================================== */
/* Ошибка в тексте страницы. Класс общий для темы: в остальных темах Magic
   (.error в dom.css, magic.css) он есть давно, в uklad его не было */
.error {
    background-color: #C80064;
    color: #FFFF46;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.error a, .error a:visited { color: #FFFF46; }

@media print {
    .site-header,
    .site-footer,
    .contact-form-wrapper,
    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .section {
        page-break-inside: avoid;
    }
}