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

:root {
    --color-primary: #2d5016;
    --color-secondary: #7cb342;
    --color-accent: #ff8f00;
    --color-dark: #1a2e0a;
    --color-light: #f5f9f0;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: relative;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-top {
    background: var(--color-primary);
    padding: 8px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.header-info span {
    color: var(--color-white);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-main {
    padding: 18px 0;
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--color-light);
    color: var(--color-primary);
}

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

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hero-magazine {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.hero-magazine::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%232d5016" width="800" height="600"/><circle fill="%237cb342" opacity="0.3" cx="600" cy="200" r="150"/><circle fill="%237cb342" opacity="0.2" cx="700" cy="400" r="200"/><path fill="%23f5f9f0" opacity="0.1" d="M0 300 Q400 200 800 350 L800 600 L0 600 Z"/></svg>') center/cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-columns {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.6;
}

.hero-visual {
    flex: 0 0 420px;
    position: relative;
}

.hero-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
}

.hero-card-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.stat-info h4 {
    font-size: 22px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--color-primary);
}

.stat-info span {
    font-size: 14px;
    color: var(--color-text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

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

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

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

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

.section-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 18px;
}

.section-dark .section-title,
.section-accent .section-title {
    color: var(--color-white);
}

.section-desc {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
}

.section-dark .section-desc,
.section-accent .section-desc {
    color: rgba(255,255,255,0.85);
}

.magazine-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.magazine-main {
    flex: 2;
    min-width: 300px;
}

.magazine-sidebar {
    flex: 1;
    min-width: 280px;
}

.feature-block {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.feature-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image-placeholder svg {
    width: 80px;
    height: 80px;
    fill: var(--color-white);
    opacity: 0.6;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.sidebar-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.sidebar-card-title {
    font-size: 20px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-light);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
}

.sidebar-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-secondary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image svg {
    width: 70px;
    height: 70px;
    fill: var(--color-white);
    opacity: 0.8;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-body {
    padding: 28px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-unit {
    font-size: 14px;
    color: var(--color-text-light);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-light);
}

.service-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
}

.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--color-secondary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 22px;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 17px;
    font-family: var(--font-main);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--color-text-light);
}

.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.form-section {
    padding: 80px 0;
}

.form-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.form-info {
    flex: 1;
    min-width: 300px;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-info p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.contact-text h4 {
    font-size: 16px;
    font-family: var(--font-main);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 15px;
    color: var(--color-text-light);
    margin: 0;
}

.form-wrapper {
    flex: 1;
    min-width: 350px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-main);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--color-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.form-checkbox span {
    font-size: 14px;
    color: var(--color-text-light);
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 17px;
}

.about-hero {
    padding: 100px 0 60px;
    background: var(--color-light);
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 0 0 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 120px;
    height: 120px;
    fill: var(--color-white);
    opacity: 0.5;
}

.about-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-primary);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--color-text-light);
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.team-photo span {
    font-size: 48px;
    color: var(--color-white);
    font-weight: 600;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 15px;
}

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.main {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--color-white);
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
    margin-top: 2px;
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--color-secondary);
    color: var(--color-white);
}

.cookie-btn.accept:hover {
    background: var(--color-primary);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn.reject:hover {
    border-color: var(--color-white);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: #e67e00;
    transform: scale(1.05);
}

.sticky-cta-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 18px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 18px;
    color: var(--color-text-light);
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-white);
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 18px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-number {
    flex: 0 0 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child) .process-number::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% + 40px);
    background: var(--color-light);
}

.process-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.process-content p {
    color: var(--color-text-light);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

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

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 22px 25px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-light);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 22px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .hero-columns {
        flex-direction: column;
        gap: 40px;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .hero-title {
        font-size: 40px;
    }

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
    }

    .feature-image {
        flex: none;
        width: 100%;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

    .form-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-main.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 5px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-magazine {
        min-height: 60vh;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .magazine-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-row {
        gap: 35px;
    }

    .stat-number {
        font-size: 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .sticky-cta {
        right: 15px;
        bottom: 80px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
