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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6a9f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c7a89;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-magazine {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(26, 77, 122, 0.3), rgba(26, 77, 122, 0.7));
    padding: 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    max-width: 900px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.4rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.editorial-intro {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.intro-column-left {
    flex: 2;
    max-width: 800px;
}

.intro-column-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-column-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.highlight-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.featured-insight {
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 1.8rem;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.inline-cta:hover {
    background-color: #d35400;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--background-light);
}

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-magazine {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.service-select-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.service-select-btn:hover {
    background-color: var(--secondary-color);
}

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

.form-wrapper-magazine {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.main-form {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.submit-btn:hover {
    background-color: #d35400;
}

.trust-section {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.testimonials-inline {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 2rem;
    background-color: var(--background-white);
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.cta-final {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-button-large:hover {
    background-color: #d35400;
}

.main-footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.references-list {
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.references-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.references-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.page-hero-small {
    padding: 4rem 2rem 3rem;
    background-color: var(--background-light);
    text-align: center;
}

.page-hero-small h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.story-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text-wide {
    flex: 1.5;
}

.story-text-wide h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text-wide p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-image-side {
    flex: 1;
}

.story-image-side img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--background-light);
}

.values-section {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.section-title-centered {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 300px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 6px;
    border-top: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.expertise-section {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.expertise-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-intro {
    margin-bottom: 3rem;
}

.expertise-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.expertise-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-left: 3px solid var(--secondary-color);
}

.expertise-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.expertise-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.approach-section {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    min-width: 60px;
    font-family: 'Arial', sans-serif;
}

.step-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-philosophy {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.philosophy-wrapper {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--background-light);
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.philosophy-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

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

.cta-content-simple h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-simple p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background-color: #d35400;
}

.services-intro-full {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

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

.intro-text-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-detail-section {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.service-detail-section.alternate-layout {
    background-color: var(--background-light);
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--background-light);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    margin: 2rem 0;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.service-pricing-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 6px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.contact-cta-section {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

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

.contact-cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.contact-layout {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-details-box {
    flex: 1;
}

.contact-details-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-additional-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.contact-additional-info h3:first-child {
    margin-top: 0;
}

.contact-additional-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-additional-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-additional-info a:hover {
    text-decoration: underline;
}

.contact-map-section {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.map-placeholder {
    max-width: 1100px;
    margin: 0 auto;
    height: 400px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-info-box {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.service-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info-box p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-primary:hover {
    background-color: #d35400;
}

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

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

.legal-page {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .editorial-intro {
        flex-direction: column;
    }

    .insight-grid,
    .story-grid,
    .philosophy-wrapper,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-around;
    }

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

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

    .values-grid,
    .expertise-list {
        flex-direction: column;
    }

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