/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --accent: #ff4e50;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #00b09b;
    --warning: #ffa726;
    --gray: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Анимированный фон */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    opacity: 0.1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Шапка сайта */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    display: flex;
    gap: 10px;
    font-size: 2.5rem;
    color: var(--primary);
}

.logo-image i {
    animation: float 6s ease-in-out infinite;
}

.logo-image i:nth-child(2) {
    animation-delay: 1s;
    color: var(--secondary);
}

.logo-image i:nth-child(3) {
    animation-delay: 2s;
    color: var(--accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo-text h1 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray);
    font-family: 'Roboto Mono', monospace;
    margin-top: 5px;
}

.site-info {
    text-align: right;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

.date-info {
    margin-bottom: 5px;
}

.highlight {
    background: linear-gradient(90deg, var(--accent), #ff8a00);
    padding: 2px 8px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
}

/* Навигация */
.nav {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 5%;
}

.nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.nav-link.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

/* Основной контент */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Герой-секция */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(106, 17, 203, 0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(106, 17, 203, 0.05), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-highlight {
    background: linear-gradient(90deg, var(--accent), #ff8a00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.5);
}

.cta-button.secondary {
    background: linear-gradient(90deg, var(--accent), #ff8a00);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(106, 17, 203, 0); }
    100% { box-shadow: 0 0 0 0 rgba(106, 17, 203, 0); }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-element.e1 { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element.e2 { top: 50%; right: 10%; animation-delay: 1s; color: var(--secondary); }
.floating-element.e3 { bottom: 10%; left: 30%; animation-delay: 2s; color: var(--accent); }
.floating-element.e4 { top: 20%; right: 20%; animation-delay: 0.5s; }
.floating-element.e5 { bottom: 20%; left: 20%; animation-delay: 1.5s; color: var(--secondary); }
.floating-element.e6 { top: 15%; left: 15%; animation-delay: 0s; }
.floating-element.e7 { top: 60%; right: 15%; animation-delay: 1s; color: var(--accent); }
.floating-element.e8 { bottom: 15%; left: 50%; animation-delay: 2s; color: var(--secondary); }

/* Блоки с цитатами */
.quote-section {
    margin-bottom: 40px;
}

.quote-block {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.quote-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.quote-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.quote-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.quote-header h3 {
    flex: 1;
    font-size: 1.3rem;
    color: var(--dark);
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.quote-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
}

.quote-content p {
    margin-bottom: 15px;
}

.quote-author {
    font-style: italic;
    font-weight: 600;
    color: var(--primary);
    text-align: right;
    margin-top: 15px;
}

.quote-block.active .quote-content {
    max-height: 500px;
}

.quote-block.active .toggle-icon {
    transform: rotate(45deg);
}

/* Секции контента */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 40px 0;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Карточки информации */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

/* Важные блоки */
.important-block {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid var(--warning);
    box-shadow: var(--shadow);
}

.important-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.important-header i {
    font-size: 2rem;
    color: var(--warning);
}

.important-header h3 {
    font-size: 1.5rem;
    color: #e65100;
}

.important-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.important-content p {
    margin-bottom: 15px;
}

/* Навигация между страницами */
.page-navigation {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px dashed var(--primary);
}

.nav-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.next-page-button {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

.next-page-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.5);
}

/* Футер */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 5% 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.motivation-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.motivation-button:hover {
    background: #ff3333;
    transform: translateY(-3px);
}

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

.footer-bottom i {
    color: var(--accent);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.5s ease;
}

@keyframes modalAppear {
    from { transform: translateY(-50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body {
    margin-top: 20px;
}

.action-steps {
    margin: 25px 0;
}

.action-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(106, 17, 203, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.action-step:hover {
    background: rgba(106, 17, 203, 0.1);
    transform: translateX(10px);
}

.action-step i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Стили для второй страницы */
.legal-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.legal-badge {
    background: white;
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.legal-badge:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
}

.legal-badge i {
    font-size: 1.5rem;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.comparison-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ip-card {
    border-top: 5px solid var(--primary);
}

.self-card {
    border-top: 5px solid var(--accent);
}

.card-header {
    padding: 25px;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.best {
    background: linear-gradient(90deg, var(--success), #00d2ff);
}

.limit {
    background: linear-gradient(90deg, var(--warning), #ff6b6b);
}

.card-body {
    padding: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    margin-top: 3px;
    font-size: 1.2rem;
}

.fa-check-circle {
    color: var(--success);
}

.fa-times-circle {
    color: var(--accent);
}

.fa-exclamation-circle {
    color: var(--warning);
}

.legal-reference {
    background: rgba(106, 17, 203, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

.documents-block {
    margin: 50px 0;
}

.documents-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.document-item {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--secondary);
}

.document-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.doc-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.document-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.document-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.doc-important {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Стили для третьей страницы */
.countdown {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
    animation: pulse 2s infinite;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-item small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-day {
    position: absolute;
    left: -70px;
    top: 25px;
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

.timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-note {
    background: rgba(106, 17, 203, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-block {
    margin: 50px 0;
}

.checklist-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.checklist {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.checklist-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(106, 17, 203, 0.05);
}

.checklist-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.checklist-header h4 {
    flex: 1;
    font-size: 1.2rem;
    color: var(--dark);
}

.checklist-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.checklist-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s ease;
}

.checklist-item.active .checklist-content {
    max-height: 200px;
    padding: 20px;
}

.checklist-item.active .checklist-toggle {
    transform: rotate(45deg);
}

.final-note {
    text-align: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    border: 2px solid var(--primary);
}

.final-note h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.final-note p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark);
}

.final-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    color: white;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.final-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .site-info {
        text-align: center;
    }
    
    .nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .info-cards, .comparison-cards, .documents-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        justify-content: center;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-day {
        left: -15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
    }
}