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

:root {
    --primary-color: #1a2332;
    --secondary-color: #3d5a80;
    --accent-color: #ee6c4d;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #4CAF50;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

.container-magazine {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-cookie-accept:hover {
    background: #d45b3d;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-color);
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

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

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

.hero-magazine {
    position: relative;
    background: linear-gradient(135deg, #1a2332 0%, #3d5a80 100%);
    color: var(--text-light);
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-main {
    flex: 2;
    max-width: 800px;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-label {
    display: inline-block;
    background: rgba(238, 108, 77, 0.2);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-magazine h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(238, 108, 77, 0.3);
}

.btn-hero:hover {
    background: #d45b3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 108, 77, 0.4);
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.section-intro {
    padding: 80px 20px;
    background: var(--bg-white);
}

.intro-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-col-left {
    flex: 1;
}

.intro-col-right {
    flex: 1;
}

.intro-columns h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-columns p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-highlight {
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 500;
}

.insight-section {
    padding: 0;
    background: var(--bg-light);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.insight-image {
    flex: 1;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.insight-content h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.insight-list {
    list-style: none;
    margin-bottom: 28px;
}

.insight-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--primary-color);
}

.trust-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-gray);
}

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

.service-card-mag {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-mag:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-number {
    position: absolute;
    top: -15px;
    left: 32px;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-card-mag h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    margin-top: 10px;
}

.service-card-mag p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-service,
.btn-service-detail {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-service:hover,
.btn-service-detail:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.case-study-section {
    padding: 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.case-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
}

.case-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-content h3 {
    font-size: 34px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.case-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-list {
    list-style: none;
    margin-bottom: 24px;
}

.case-list li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
}

.case-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.case-result {
    background: rgba(238, 108, 77, 0.2);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin-top: 24px;
}

.case-image {
    flex: 1;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-gray);
}

.contact-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: #d45b3d;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-columns {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.cta-final,
.cta-section {
    padding: 80px 20px;
    background: var(--secondary-color);
    text-align: center;
    color: var(--text-light);
}

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

.cta-content-center h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta-large:hover {
    background: #d45b3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.main-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(238, 108, 77, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: #d45b3d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(238, 108, 77, 0.5);
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.approach-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.approach-columns {
    display: flex;
    gap: 80px;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.approach-right {
    flex: 1.2;
}

.approach-step {
    margin-bottom: 40px;
    padding-left: 70px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.approach-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.services-detail-section {
    padding: 60px 20px 100px;
    background: var(--bg-white);
}

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

.services-intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-badge {
    display: inline-block;
    background: rgba(238, 108, 77, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 32px;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

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

.contact-note {
    font-style: italic;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-section {
    padding: 120px 20px;
    background: var(--bg-white);
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.service-confirmation p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-info {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #d45b3d;
}

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

.btn-secondary:hover {
    border-color: var(--accent-color);
}

.legal-section {
    padding: 60px 20px 100px;
    background: var(--bg-white);
}

.legal-content {
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-gray);
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .intro-columns,
    .insight-wrapper,
    .case-wrapper,
    .about-grid,
    .approach-columns,
    .contact-grid {
        flex-direction: column;
    }

    .testimonials-columns {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .service-card-mag {
        flex: 1 1 calc(50% - 15px);
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-magazine h1 {
        font-size: 36px;
    }

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

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

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

    .value-card,
    .team-member,
    .footer-col {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-magazine {
        padding: 60px 20px 50px;
    }

    .hero-magazine h1 {
        font-size: 28px;
    }

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

    .insight-content,
    .case-content {
        padding: 50px 30px;
    }
}
