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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
    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;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

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

.header-magazine {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.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-section {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.nav-primary {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-primary a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-primary a:hover {
    color: #3498db;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-text-block {
    max-width: 700px;
    color: #ffffff;
}

.hero-text-block h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.intro-column-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.column-left {
    flex: 2;
}

.column-right {
    flex: 1;
}

.column-left h3,
.column-right h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
    line-height: 1.3;
}

.column-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.insight-box {
    background-color: #ecf0f1;
    padding: 32px;
    border-left: 4px solid #3498db;
}

.insight-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a252f;
}

.insight-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
}

.visual-break {
    margin: 80px 0;
}

.dual-image-layout {
    display: flex;
    gap: 40px;
}

.image-card {
    flex: 1;
    background-color: #f8f9fa;
}

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

.caption {
    padding: 16px 20px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.content-wide {
    margin: 80px 0;
}

.content-wide h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    text-align: center;
}

.three-column-grid {
    display: flex;
    gap: 40px;
}

.grid-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
}

.grid-item h5 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.grid-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.cta-inline {
    margin: 80px 0;
    background-color: #3498db;
    padding: 60px 80px;
    text-align: center;
}

.cta-content h4 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.sidebar-layout {
    display: flex;
    gap: 60px;
    margin: 80px 0;
}

.sidebar-content {
    flex: 0 0 320px;
    background-color: #f8f9fa;
    padding: 32px;
}

.sidebar-content h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.misconception-list li {
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 15px;
    color: #495057;
}

.sidebar-note {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    font-style: italic;
}

.main-content {
    flex: 1;
}

.main-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.main-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.main-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 32px 0;
    background-color: #e1e8ed;
}

.testimonial-section {
    margin: 80px 0;
    background-color: #f8f9fa;
    padding: 60px;
}

.testimonial-section h3 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a252f;
    text-align: center;
}

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #2ecc71;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.deep-dive-section {
    margin: 80px 0;
}

.deep-dive-section h3 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a252f;
}

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

.fuel-analysis-block {
    flex: 1;
}

.fuel-analysis-block h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.fuel-analysis-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #e1e8ed;
}

.fuel-analysis-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 16px;
}

.form-section {
    margin: 80px 0;
    background-color: #ecf0f1;
    padding: 60px;
}

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

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

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 32px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

.footer-magazine {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c4ce;
    margin-bottom: 12px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b8c4ce;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #b8c4ce;
}

.services-page-magazine {
    min-height: 100vh;
}

.page-header-visual {
    background-color: #2c3e50;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.header-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.intro-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
}

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

.service-card-large {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    overflow: hidden;
}

.service-visual {
    flex: 0 0 40%;
    background-color: #f8f9fa;
}

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

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

.service-details h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.service-details > p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-duration {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.service-card-compact {
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.service-card-compact h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-card-compact .service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 16px;
}

.service-card-compact p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 20px;
}

.service-process {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #ecf0f1;
}

.service-process h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a252f;
}

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

.process-step {
    flex: 1;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

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

.cta-box {
    background-color: #3498db;
    padding: 60px;
    text-align: center;
}

.cta-box h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.about-page-magazine {
    min-height: 100vh;
}

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

.header-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.header-text {
    flex: 1;
}

.header-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
    line-height: 1.2;
}

.header-text p {
    font-size: 20px;
    color: #34495e;
    line-height: 1.6;
}

.header-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

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

.content-narrow {
    max-width: 900px;
    margin: 80px auto;
}

.content-narrow h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.content-narrow p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.content-wide-section {
    margin: 80px 0;
}

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

.principle-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-top: 4px solid #3498db;
}

.principle-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

.principle-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.methodology-section {
    margin: 80px 0;
    background-color: #ffffff;
}

.methodology-section h3 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a252f;
}

.methodology-layout {
    display: flex;
    gap: 60px;
}

.methodology-sidebar {
    flex: 0 0 40%;
    background-color: #f8f9fa;
}

.methodology-sidebar img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.methodology-content {
    flex: 1;
}

.methodology-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.team-section {
    margin: 80px 0;
}

.team-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

.experience-blocks {
    display: flex;
    gap: 40px;
}

.experience-item {
    flex: 1;
    padding: 32px;
    background-color: #ecf0f1;
}

.experience-item h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a252f;
}

.experience-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.approach-visual {
    margin: 80px 0;
}

.approach-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: #e1e8ed;
}

.image-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.values-section {
    margin: 80px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values-section h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a252f;
}

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

.values-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e1e8ed;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    padding-left: 32px;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.about-cta {
    margin: 80px 0;
    background-color: #2c3e50;
    padding: 60px;
    text-align: center;
}

.cta-content-about h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content-about p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.contact-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-header p {
    font-size: 18px;
    color: #34495e;
}

.contact-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

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

.contact-block {
    margin-bottom: 48px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.address {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
}

.email-display {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 12px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e1e8ed;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.time {
    color: #34495e;
    font-size: 15px;
}

.contact-image-section {
    flex: 1;
    background-color: #f8f9fa;
}

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

.inquiry-section {
    margin: 80px 0;
}

.inquiry-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a252f;
}

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

.inquiry-card {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #2ecc71;
}

.inquiry-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a252f;
}

.inquiry-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

.location-context {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background-color: #ecf0f1;
}

.location-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
}

.location-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.contact-cta {
    margin: 80px 0;
}

.cta-box-contact {
    background-color: #3498db;
    padding: 60px;
    text-align: center;
}

.cta-box-contact h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-box-contact p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.thanks-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    min-height: 100vh;
}

.thanks-content {
    display: flex;
    gap: 60px;
}

.thanks-message {
    flex: 2;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #2ecc71;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 32px;
}

.thanks-message h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.confirmation-text {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 48px;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a252f;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
}

.step-number {
    flex: 0 0 48px;
    height: 48px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.reference-info {
    padding: 24px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    margin-bottom: 32px;
}

.reference-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ecf0f1;
}

.thanks-sidebar {
    flex: 1;
}

.info-box {
    padding: 32px;
    background-color: #ecf0f1;
    margin-bottom: 32px;
}

.info-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a252f;
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 16px;
}

.info-box ul {
    list-style: none;
    margin-bottom: 16px;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.info-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.contact-reminder {
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-reminder h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-reminder p {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 12px;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e1e8ed;
}

.legal-header h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e8ed;
}

.legal-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.contact-details {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

@media (max-width: 1024px) {
    .intro-column-split,
    .dual-image-layout,
    .three-column-grid,
    .sidebar-layout,
    .testimonial-grid,
    .comparison-layout,
    .process-columns,
    .header-split,
    .principle-grid,
    .methodology-layout,
    .experience-blocks,
    .contact-layout,
    .inquiry-grid,
    .thanks-content,
    .service-card-large {
        flex-direction: column;
    }

    .column-left,
    .column-right,
    .sidebar-content,
    .main-content {
        flex: 1;
    }

    .hero-text-block h2 {
        font-size: 36px;
    }

    .header-content h2,
    .thanks-message h2 {
        font-size: 32px;
    }

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

@media (max-width: 768px) {
    .header-container,
    .magazine-layout,
    .services-grid-magazine,
    .services-intro,
    .about-content,
    .contact-page,
    .thanks-page,
    .legal-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-text-block h2 {
        font-size: 28px;
    }

    .hero-text-block p {
        font-size: 16px;
    }

    .cta-inline,
    .form-section,
    .service-process,
    .about-cta,
    .cta-services,
    .contact-cta,
    .cta-box,
    .cta-box-contact {
        padding: 40px 20px;
    }

    .nav-primary {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}