/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #555;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

/* Main Article Structure - Editorial Style */
.main-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: normal;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    font-weight: normal;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content section {
    margin-bottom: 3.5rem;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
    font-weight: normal;
    line-height: 1.4;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: normal;
}

.article-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.8rem;
}

/* Inline Images - Core of Editorial Style */
.inline-image {
    margin: 2.5rem 0;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    border-radius: 3px;
}

/* Blockquotes and Testimonials */
blockquote.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.insight-list,
.philosophy-list,
.approach-list,
.tips-list,
.transport-list,
.industry-list {
    list-style-position: outside;
}

.methodology-list {
    counter-reset: methodology;
    list-style: none;
    margin-left: 0;
}

.methodology-list li {
    counter-increment: methodology;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.methodology-list li::before {
    content: counter(methodology);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3498db;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

/* CTAs - Inline Style */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-submit {
    background-color: #27ae60;
    color: white;
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

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

.btn-select-service {
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

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

.btn-select-service-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: white;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

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

/* Card-based elements within editorial flow */
.problem-cards,
.benefits-grid,
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-card,
.benefit-item,
.value-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 3px;
    border-left: 3px solid #3498db;
}

.problem-card h3,
.benefit-item h4,
.value-card h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

/* Services Section */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-card.featured {
    border: 2px solid #3498db;
    background-color: #f8fbfd;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.service-desc {
    margin: 1rem 0;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: bold;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

/* Contact Form */
.contact-form-wrapper {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #34495e;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Urgency and Highlight Sections */
.urgency-highlight {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.urgency-highlight p {
    margin-bottom: 0.8rem;
}

.urgency-highlight p:last-child {
    margin-bottom: 0;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.team-member h3 {
    margin-top: 0;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.team-member .role {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 0.8rem;
}

/* Services Page Specific */
.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2rem;
    color: #27ae60;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.popular-badge,
.exclusive-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: white;
    border-radius: 3px;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    margin-top: 0.5rem;
}

.exclusive-badge {
    background-color: #e74c3c;
}

.featured-service {
    background-color: #f8fbfd;
    padding: 2rem;
    border-radius: 3px;
    border: 2px solid #3498db;
}

.vip-service {
    background-color: #fef5e7;
    padding: 2rem;
    border-radius: 3px;
    border: 2px solid #f39c12;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Contact Page Specific */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 3px;
    border-left: 3px solid #3498db;
}

.contact-card h3 {
    margin-top: 0;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-top: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.8rem;
}

.inquiry-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inquiry-card {
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.inquiry-card h4 {
    margin-top: 0;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 2rem 0;
}

.thanks-message {
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    margin-top: 0;
    color: #2c3e50;
}

.while-waiting {
    margin: 3rem 0;
}

.waiting-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.waiting-link {
    display: block;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 3px;
    border-left: 3px solid #3498db;
    transition: all 0.3s ease;
}

.waiting-link:hover {
    background-color: #e8f4f8;
    transform: translateX(5px);
}

.waiting-link h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.waiting-link p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.urgent-contact,
.social-proof {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.email-link {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Policy Pages */
.policy-content section {
    margin-bottom: 2.5rem;
}

.policy-content h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    font-family: 'Arial', sans-serif;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 1.5rem 0 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c0392b;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Footer */
.main-footer {
    background-color: #34495e;
    color: white;
    padding: 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ecf0f1;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-copy {
    font-size: 0.85rem;
    color: #bdc3c7;
    font-family: 'Arial', sans-serif;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.final-cta {
    text-align: center;
    margin: 3rem 0;
}

.final-cta-contact {
    text-align: center;
    margin: 3rem 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .problem-cards,
    .benefits-grid,
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card,
    .benefit-item,
    .value-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 250px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 250px;
    }

    .inquiry-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .inquiry-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .article-content {
        font-size: 1.05rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-tag {
        margin-top: 0.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media print {
    .main-nav,
    .cookie-banner,
    .sticky-cta,
    .cta-inline,
    .contact-form-wrapper {
        display: none;
    }
}