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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.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: background-color 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #27ae60;
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: var(--secondary-color);
}

main {
    min-height: 60vh;
}

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.hero-text-area {
    flex: 1;
}

.hero-text-area h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-image-area {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-area img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-secondary-stories {
    display: flex;
    gap: 30px;
}

.story-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.story-card img {
    width: 100%;
    height: 200px;
    background-color: var(--bg-light);
}

.story-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

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

.intro-statement {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.statement-layout {
    display: flex;
    gap: 80px;
}

.statement-column-left {
    flex: 2;
}

.statement-column-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.2;
}

.statement-column-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.statement-column-right {
    flex: 1;
}

.insight-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.insight-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.insight-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

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

.featured-stories-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.story-large {
    flex: 0 0 100%;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.story-large img {
    width: 50%;
    height: auto;
    min-height: 300px;
    background-color: var(--bg-light);
}

.story-content {
    padding: 40px;
    flex: 1;
}

.story-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.story-medium {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.story-medium img {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
}

.story-medium .story-content {
    padding: 30px;
}

.services-preview-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.services-intro-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.services-text-block {
    flex: 2;
}

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

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

.services-cta-block {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-cta-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-cta-block p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.testimonials-editorial {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.testimonials-editorial h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial-block {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-block blockquote {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-block footer {
    margin-top: 20px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.cta-form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.form-wrapper-magazine {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

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

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

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

.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: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.about-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.about-image-side {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.about-image-side img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.about-text-side {
    flex: 1;
}

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

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

.link-inline {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: underline;
}

.link-inline:hover {
    color: #c0392b;
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 100px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    text-align: center;
}

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

.page-hero-simple {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-page {
    font-size: 20px;
    color: var(--text-light);
}

.about-story-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-layout-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-block {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.story-image-block img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.story-text-block {
    flex: 1;
}

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

.story-text-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.philosophy-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

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

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

.team-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.team-magazine-layout {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

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

.team-role {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

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

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

.values-content-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.values-content-block h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.values-two-column {
    display: flex;
    gap: 60px;
}

.value-column {
    flex: 1;
}

.value-column h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 30px;
    color: var(--primary-color);
}

.value-column h3:first-child {
    margin-top: 0;
}

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

.impact-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.impact-stats-layout h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 54px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-light);
}

.cta-about-bottom {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.cta-centered-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-centered-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-intro-editorial {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.intro-large-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.services-listing-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.service-card-large {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-details {
    flex: 1;
    padding: 50px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-features h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-guarantee {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--success-color);
    border-radius: 4px;
}

.guarantee-box h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.guarantee-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-content-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-layout-split {
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-detail-group {
    margin-bottom: 30px;
}

.contact-detail-group h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-visual-block {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.faq-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-map-note {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-page-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-content-centered {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content-centered h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
    display: none;
}

.service-confirmation-box.show {
    display: block;
}

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

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps-list li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.next-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.thanks-testimonial {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.testimonial-box-centered {
    background-color: var(--bg-light);
    padding: 40px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-box-centered blockquote p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-box-centered footer {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.legal-page-section {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 16px 0 16px 30px;
    line-height: 1.7;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    font-size: 15px;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .hero-main-story {
        flex-direction: column;
    }

    .hero-text-area h1 {
        font-size: 42px;
    }

    .hero-secondary-stories {
        flex-direction: column;
    }

    .statement-layout {
        flex-direction: column;
        gap: 40px;
    }

    .story-large {
        flex-direction: column;
    }

    .story-large img {
        width: 100%;
        height: 300px;
    }

    .story-medium {
        flex: 0 0 100%;
    }

    .services-intro-layout {
        flex-direction: column;
    }

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

    .about-asymmetric-layout {
        flex-direction: column;
    }

    .story-layout-asymmetric {
        flex-direction: column;
    }

    .philosophy-item {
        flex: 0 0 100%;
    }

    .team-magazine-layout {
        flex-direction: column;
    }

    .values-two-column {
        flex-direction: column;
        gap: 20px;
    }

    .stats-flex {
        flex-wrap: wrap;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-visual img {
        min-height: 300px;
    }

    .contact-layout-split {
        flex-direction: column;
        gap: 40px;
    }

    .faq-item {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-magazine {
        padding: 40px 20px;
    }

    .hero-text-area h1 {
        font-size: 32px;
    }

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

    .intro-statement {
        padding: 0 20px;
        margin: 40px auto;
    }

    .statement-column-left h2 {
        font-size: 28px;
    }

    .featured-stories-grid {
        padding: 0 20px;
        margin: 40px auto;
    }

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

    .services-intro-layout {
        padding: 0 20px;
    }

    .testimonials-editorial {
        padding: 0 20px;
    }

    .form-wrapper-magazine {
        padding: 0 20px;
    }

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

    .about-preview {
        padding: 0 20px;
    }

    .footer-magazine-columns {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .page-hero-simple {
        padding: 0 20px;
    }

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

    .about-story-section {
        padding: 0 20px;
    }

    .team-section {
        padding: 0 20px;
    }

    .impact-section {
        padding: 0 20px;
    }

    .stats-flex {
        flex-direction: column;
        gap: 30px;
    }

    .services-listing-magazine {
        padding: 0 20px 40px;
    }

    .service-details {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 28px;
    }

    .contact-content-section {
        padding: 0 20px;
    }

    .thanks-page-section {
        padding: 0 20px;
    }

    .legal-page-section {
        padding: 0 20px;
    }

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