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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 2px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ffeaa7;
}

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

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

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

.main-nav a:hover {
    color: #2c5f2d;
}

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

.hero-editorial {
    margin-bottom: 80px;
}

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

.hero-main-col {
    flex: 1.2;
}

.hero-main-col h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.cta-inline {
    display: inline-block;
    color: #2c5f2d;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #1e4620;
    border-bottom-color: #1e4620;
}

.hero-side-col {
    flex: 1;
}

.hero-side-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.editorial-intro {
    margin-bottom: 80px;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
}

.intro-card.highlight-card {
    border-left-color: #2c5f2d;
    background-color: #f8fdf8;
}

.intro-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.intro-card p {
    color: #495057;
    font-size: 16px;
}

.services-magazine {
    margin-bottom: 80px;
}

.section-header-offset {
    margin-bottom: 48px;
    max-width: 700px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    color: #6c757d;
}

.services-multi-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-primary {
    display: flex;
    gap: 48px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    align-items: flex-start;
}

.service-primary.reverse-layout {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.service-content {
    flex: 1.3;
}

.service-content h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-tag {
    background-color: #e9f5e9;
    color: #2c5f2d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.btn-service-select {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service-select:hover {
    background-color: #1e4620;
}

.service-secondary-group {
    display: flex;
    gap: 32px;
}

.service-compact {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.service-compact h4 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

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

.price-inline {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
}

.compact-btn {
    padding: 12px 24px;
    font-size: 15px;
}

.service-full-width {
    background-color: #f1f8f1;
    padding: 48px;
    border-radius: 8px;
}

.service-split-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.split-text {
    flex: 1.5;
}

.split-text h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.split-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 24px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.service-compact.standalone {
    max-width: 800px;
    margin: 0 auto;
}

.value-proposition {
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

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

.value-text-block {
    flex: 1.4;
}

.value-text-block h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.value-text-block p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-image-block {
    flex: 1;
}

.value-image-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.testimonials-inline {
    margin-bottom: 80px;
}

.testimonials-inline h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-columns {
    display: flex;
    gap: 32px;
}

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

.testimonial-card.featured {
    background-color: #f8fdf8;
    border-left-color: #2c5f2d;
}

.testimonial-card p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

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

.methodology-section {
    margin-bottom: 80px;
}

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

.method-visual {
    flex: 1;
}

.method-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.method-text {
    flex: 1.3;
}

.method-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.method-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.method-list li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.method-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 18px;
}

.link-method {
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.link-method:hover {
    color: #1e4620;
}

.cta-section-primary {
    margin-bottom: 80px;
    background-color: #2c5f2d;
    padding: 80px 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-centered h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-centered p {
    font-size: 18px;
    color: #e9f5e9;
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #e9f5e9;
}

.disclaimer-section {
    margin-bottom: 80px;
    background-color: #fff3cd;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 22px;
    color: #856404;
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e9ecef;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.6;
}

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

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

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

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

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

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

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 80px auto;
    padding: 48px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.modal-service-info, .modal-price-info {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
}

.modal-service-info strong, .modal-price-info strong {
    color: #2c5f2d;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

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

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

.services-page, .about-page, .contact-page, .thanks-page, .legal-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background-color: #f8fdf8;
    border-radius: 8px;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #6c757d;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-card.alternate {
    display: flex;
    gap: 48px;
    padding: 40px;
}

.service-detail-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-detail-header.small-header {
    height: 300px;
}

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

.service-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: #ffffff;
}

.service-detail-overlay h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #a8e6a3;
}

.service-detail-body {
    padding: 40px;
    flex: 1.5;
}

.service-detail-body h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-detail-body p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-body h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 24px;
}

.service-detail-body ul {
    margin-bottom: 32px;
}

.service-detail-body ul li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.service-detail-body ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2c5f2d;
    font-weight: 700;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.services-cta {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #1e4620;
}

.about-hero {
    margin-bottom: 80px;
}

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

.about-hero-content h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-intro {
    font-size: 22px;
    color: #495057;
    line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.about-story {
    margin-bottom: 80px;
}

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

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.team-values {
    margin-bottom: 80px;
}

.team-values h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.methodology-detail {
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.methodology-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.expertise-areas {
    margin-bottom: 80px;
}

.expertise-areas h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

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

.expertise-col {
    flex: 1;
}

.expertise-col img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.expertise-col h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.expertise-col p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.about-cta {
    background-color: #f8fdf8;
    padding: 60px;
    border-radius: 8px;
}

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

.cta-box h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

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

.contact-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 20px;
    color: #6c757d;
}

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

.contact-info-section {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-faq {
    margin-bottom: 80px;
}

.contact-faq h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}

.contact-map-placeholder {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

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

.map-info h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.map-info p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

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

.thanks-icon {
    margin: 40px auto;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8fdf8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #2c5f2d;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
}

.step-item .step-number {
    background-color: #2c5f2d;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
}

.step-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

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

.thanks-contact-info {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.thanks-contact-info p {
    font-size: 15px;
    color: #495057;
    margin-bottom: 8px;
}

.contact-email {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 16px;
}

.contact-hours {
    font-size: 14px;
    color: #6c757d;
}

.legal-page {
    max-width: 900px;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-intro {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e4620;
}

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

    .services-multi-col {
        gap: 40px;
    }

    .service-primary {
        flex-direction: column;
    }

    .service-primary.reverse-layout {
        flex-direction: column;
    }

    .service-secondary-group {
        flex-direction: column;
    }

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

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

    .value-asymmetric {
        flex-direction: column;
    }

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

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

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

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

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

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .magazine-layout, .services-page, .about-page, .contact-page, .thanks-page, .legal-page {
        padding: 20px 20px 40px;
    }

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

    .section-header-offset h2 {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 26px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .modal-content {
        padding: 32px 24px;
        margin: 40px 20px;
    }

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