/* 
 * Kzzfinancesrouteguide - Школа стратегического планирования жизни
 * Main stylesheet
 */


:root {
    --primary: #1E5F8C;
    --primary-light: #2980b9;
    --primary-dark: #0A2F4A;
    --secondary: #3498DB;
    --accent: #F39C12;
    --bg-light: #F8FBFD;
    --bg-dark: #0A2F4A;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --text-light: #ECF0F1;
    --success: #27AE60;
    --warning: #E67E22;
    --error: #E74C3C;
    --border: #D5E3EF;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Epilogue', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover, a:focus {
    color: var(--primary-light);
    text-decoration: underline;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

button, input, select, textarea {
    font-family: 'Epilogue', sans-serif;
}


.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

.btn:hover, .btn:focus {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-light);
    color: white;
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}


.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

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

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 1.5rem;
}

.nav-list a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover, .nav-list a:focus, .nav-list a.active {
    color: var(--primary);
    text-decoration: none;
}

.nav-list a.active::after, .nav-list a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.header-cta {
    margin-left: 2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}


.hero {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}


.benefits {
    background-color: white;
}

.benefits h2, .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.benefit-example {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(30, 95, 140, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}


.contact-form-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-content {
    padding: 3rem;
}

.form-content h2 {
    margin-bottom: 1rem;
}

.form-content p {
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 95, 140, 0.2);
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}


.program-structure {
    background-color: white;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.modules-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.module-card:nth-child(even) {
    flex-direction: row-reverse;
}

.module-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-content {
    flex: 1;
}

.module-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.module-content p {
    margin-bottom: 1rem;
}

.module-content p:last-child {
    margin-bottom: 0;
}


.target-audience {
    background-color: var(--bg-light);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.audience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.audience-card h3 {
    margin-bottom: 1rem;
}


.methodology {
    background-color: white;
}

.methodology-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.methodology-content {
    flex: 1;
}

.methodology-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methodology-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.methodology-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.methodology-item i {
    color: var(--primary);
}

.methodology-note {
    padding: 1.5rem;
    background-color: rgba(30, 95, 140, 0.05);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}


.case-studies {
    background-color: var(--bg-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.case-header {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
}

.case-header h3 {
    margin-bottom: 0;
    color: white;
}

.case-content {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.case-before, .case-after {
    flex: 1;
}

.case-before h4, .case-after h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.case-before h4 {
    color: var(--text-secondary);
}

.case-after h4 {
    color: var(--primary);
}

.case-before ul, .case-after ul {
    padding-left: 1rem;
    list-style-type: none;
}

.case-before ul li, .case-after ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.case-before ul li::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--error);
    position: absolute;
    left: 0;
}

.case-after ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
}

.case-result {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
}

.case-result p {
    margin-bottom: 0;
}


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

.cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.cta-wrapper .btn-primary:hover, .cta-wrapper .btn-primary:focus {
    background-color: var(--bg-light);
}


.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

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

.footer-logo img {
    margin-bottom: 1rem;
    height: 42px;
    width: auto;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-nav h3, .footer-contact h3, .footer-legal h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-nav a, .footer-legal a, .footer-contact a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover, .footer-contact a:hover {
    opacity: 1;
    color: white;
    text-decoration: none;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    margin-top: 0.25rem;
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.6;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 2rem;
}


.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1500;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-categories {
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.cookie-category {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.cookie-category label {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-category p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

#accept-necessary {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

#accept-selected {
    background-color: var(--secondary);
    color: white;
}

#accept-all {
    background-color: var(--primary);
    color: white;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--primary);
}


.thanks-section {
    padding: 8rem 0;
    text-align: center;
}

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

.thanks-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.next-steps h2 {
    margin-bottom: 1.5rem;
}

.next-steps ol {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.next-steps li {
    margin-bottom: 1rem;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}


.page-hero {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}


.concept {
    background-color: white;
}

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

.concept h2 {
    margin-bottom: 2rem;
}

.concept h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.concept ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.concept li {
    margin-bottom: 0.5rem;
}


.educational-elements {
    background-color: var(--bg-light);
}

.element-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.element-card:last-child {
    margin-bottom: 0;
}

.element-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.element-card h3 i {
    color: var(--primary);
}

.element-card h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.element-card ul {
    padding-left: 1.5rem;
}

.element-card li {
    margin-bottom: 0.5rem;
}


.format {
    background-color: white;
}

.format-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.format-item {
    display: flex;
    gap: 1.5rem;
}

.format-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.25rem;
    padding-top: 0.75rem;
}

.format-content {
    flex: 1;
}

.format-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.format-content ul {
    padding-left: 1.5rem;
}


.expected-results {
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.timeline-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
}


.common-mistakes {
    background-color: white;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.mistake-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mistake-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--warning);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mistake-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.mistake-card p {
    margin-bottom: 1rem;
}

.mistake-card p:last-child {
    margin-bottom: 0;
}


.directions-intro {
    background-color: white;
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-wrapper p {
    font-size: 1.125rem;
}


.directions {
    background-color: var(--bg-light);
}

.direction-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.direction-card:last-child {
    margin-bottom: 0;
}

.direction-image {
    height: 300px;
    overflow: hidden;
}

.direction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.direction-content {
    padding: 2rem;
}

.direction-content h2 {
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.direction-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.detail-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.detail-item h3 i {
    color: var(--primary);
}

.detail-item ul {
    padding-left: 1.5rem;
}

.detail-item li {
    margin-bottom: 0.5rem;
}


.directions-differences {
    background-color: white;
}

.differences-content {
    max-width: 900px;
    margin: 0 auto;
}

.differences-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.stages-grid, .combinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stage-card, .combination-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stage-card h4, .combination-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.stage-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.stage-card li {
    margin-bottom: 0.5rem;
}


.practical-examples {
    background-color: var(--bg-light);
}

.examples-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.example-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.example-card h3 {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    margin-bottom: 0;
}

.example-content {
    padding: 1.5rem;
}

.example-content p {
    margin-bottom: 1rem;
}

.example-content p:last-child {
    margin-bottom: 0;
}


.contacts-section {
    background-color: white;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.25rem;
    padding-top: 0.75rem;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-details p {
    margin-bottom: 0;
}

.contact-map h3 {
    margin-bottom: 1.5rem;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.contact-additional {
    background-color: var(--bg-light);
}

.additional-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.privacy-contact, .contact-cta {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-contact h2, .contact-cta h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.privacy-contact p, .contact-cta p {
    margin-bottom: 1rem;
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

.contact-cta p {
    margin-bottom: 2rem;
}


.policy-content {
    background-color: white;
    padding: 5rem 0;
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.policy-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.policy-toc h2 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 0.75rem;
}

.policy-toc a {
    color: var(--text-primary);
    transition: var(--transition);
}

.policy-toc a:hover {
    color: var(--primary);
    text-decoration: none;
}

.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.policy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.policy-section ul, .policy-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cookie-table th, .cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background-color: var(--primary);
    color: white;
}

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


.example-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.example-box h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.quarter {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.quarter:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.quarter h5 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.quarter ul {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.quarter li {
    margin-bottom: 0.5rem;
}


.iti {
    width: 100%;
}


@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-wrapper, .methodology-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .policy-wrapper {
        grid-template-columns: 1fr;
    }

    .policy-toc {
        position: static;
        margin-bottom: 2rem;
    }

    .contacts-wrapper, .additional-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: relative;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        width: 200px;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 0 0 1rem 0;
    }

    .nav-list li:last-child {
        margin-bottom: 0;
    }

    .header-cta {
        display: none;
    }

    .module-card, .module-card:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .case-content {
        flex-direction: column;
    }

    .case-before {
        margin-bottom: 1.5rem;
    }

    .format-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-content {
        padding: 1.5rem;
    }

    .cookie-content {
        padding: 1.5rem;
    }
}