/* ===================================
   Reset and Base Styles
   =================================== */

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

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

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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

ul {
    list-style: none;
}

/* ===================================
   Container and Layout
   =================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header and Navigation
   =================================== */

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: none;
}

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

.main-nav a {
    font-weight: 500;
    color: #2c3e50;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f39c12;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: flex;
    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: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

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

    .logo img {
        height: 50px;
    }
}

/* Mobile menu when open */
.main-nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.main-nav.mobile-open ul {
    flex-direction: column;
    gap: 0;
}

.main-nav.mobile-open li {
    border-bottom: 1px solid #ecf0f1;
}

.main-nav.mobile-open a {
    display: block;
    padding: 15px 20px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f39c12;
    color: #ffffff;
    border-color: #f39c12;
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: #ffffff;
    padding: 60px 0;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-graphic {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }

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

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-graphic {
        display: block;
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: 60px 0;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }

    section h2 {
        font-size: 2.2rem;
    }
}

/* ===================================
   Company Overview
   =================================== */

.company-overview {
    background-color: #f8f9fa;
}

.overview-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.overview-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.overview-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .overview-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .overview-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .overview-item {
        flex: 1 1 calc(25% - 23px);
    }
}

/* ===================================
   Statistics Section
   =================================== */

.statistics-section {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stats-wrapper {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* ===================================
   Process Section
   =================================== */

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

.process-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #f39c12;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 20px);
    }
}

/* ===================================
   Philosophy Section
   =================================== */

.philosophy-section {
    background-color: #ecf0f1;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.philosophy-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-visual {
    display: none;
}

@media (min-width: 768px) {
    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-visual {
        display: block;
        flex: 1;
    }
}

/* ===================================
   Service Highlights
   =================================== */

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #f39c12;
    font-weight: 600;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(25% - 23px);
    }
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

/* ===================================
   Trust Indicators
   =================================== */

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    display: flex;
    gap: 20px;
}

.trust-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .trust-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 15px);
    }
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    color: #f39c12;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    line-height: 1.7;
    color: #555;
}

/* ===================================
   Industry Insights
   =================================== */

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
}

.insight-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-block p {
    line-height: 1.8;
}

@media (min-width: 768px) {
    .insights-content {
        flex-direction: row;
    }

    .insight-block {
        flex: 1;
    }
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #ecf0f1;
}

.footer-column a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }
}

/* ===================================
   Modal
   =================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 5px;
}

.cookie-option strong {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.cookie-option p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #ecf0f1;
    text-align: right;
}

/* ===================================
   Page Hero
   =================================== */

.page-hero {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* ===================================
   Company Story (About Page)
   =================================== */

.company-story {
    background-color: #f8f9fa;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-visual {
    display: none;
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
    }

    .story-text {
        flex: 1.5;
    }

    .story-visual {
        display: block;
        flex: 1;
    }
}

/* ===================================
   Values Section
   =================================== */

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }
}

/* ===================================
   Team Section
   =================================== */

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }
}

/* ===================================
   Timeline (Milestones)
   =================================== */

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background-color: #ecf0f1;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* ===================================
   Benefits Working
   =================================== */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.benefit-text p {
    line-height: 1.7;
}

@media (min-width: 768px) {
    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 13px);
    }
}

/* ===================================
   Achievements Section
   =================================== */

.achievements-section {
    background-color: #f8f9fa;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #555;
}

@media (min-width: 768px) {
    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}

/* ===================================
   Philosophy Detail
   =================================== */

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
    border-radius: 5px;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .philosophy-blocks {
        flex-direction: row;
    }

    .philosophy-block {
        flex: 1;
    }
}

/* ===================================
   Services Page
   =================================== */

.services-intro {
    background-color: #f8f9fa;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item-full {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.service-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-title-price {
    flex: 1;
}

.service-title-price h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
}

.service-description {
    line-height: 1.8;
}

/* ===================================
   Service Benefits
   =================================== */

.service-benefits-section {
    background-color: #f8f9fa;
}

.benefits-included {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.included-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

@media (min-width: 768px) {
    .benefits-included {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .included-item {
        flex: 1 1 calc(50% - 10px);
    }
}

/* ===================================
   Process Detail
   =================================== */

.process-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-detail-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.process-detail-number {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f39c12;
    color: #ffffff;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-detail-item p {
    line-height: 1.7;
}

@media (min-width: 768px) {
    .process-detail-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-detail-item {
        flex: 1 1 calc(50% - 15px);
    }
}

/* ===================================
   Comparison Table
   =================================== */

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: flex;
}

.comparison-header {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    border-right: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

@media (max-width: 767px) {
    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 600px;
    }
}

/* ===================================
   Contact Page
   =================================== */

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

.contact-info-block h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-description h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-checklist {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.contact-checklist li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

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

    .contact-description {
        flex: 1.5;
    }
}

/* ===================================
   Directions Section
   =================================== */

.directions-section {
    background-color: #f8f9fa;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direction-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.direction-block p {
    margin-bottom: 15px;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .directions-content {
        flex-direction: row;
    }

    .direction-block {
        flex: 1;
    }
}

/* ===================================
   Company Info Section
   =================================== */

.company-details {
    max-width: 700px;
    margin: 0 auto;
}

.company-detail-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
}

.detail-label {
    flex: 0 0 200px;
    font-weight: 600;
    color: #2c3e50;
}

.detail-value {
    flex: 1;
    color: #555;
}

/* ===================================
   Additional Info
   =================================== */

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .info-blocks {
        flex-direction: row;
    }

    .info-block {
        flex: 1;
    }
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-section {
    padding: 80px 0;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    margin: 0 auto 30px;
}

.thank-you-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (min-width: 768px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===================================
   Next Steps
   =================================== */

.next-steps {
    background-color: #f8f9fa;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-icon {
    margin: 0 auto 20px;
}

.step-icon img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }
}

/* ===================================
   Resources (Thank You Page)
   =================================== */

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.resource-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.resource-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.resource-link {
    display: inline-block;
    color: #f39c12;
    font-weight: 600;
}

@media (min-width: 768px) {
    .resources-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }
}

/* ===================================
   Legal Pages
   =================================== */

.legal-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 0.95rem;
    opacity: 0.9;
}

.legal-content {
    padding: 60px 0;
}

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

.legal-text h2 {
    font-size: 1.7rem;
    margin: 40px 0 20px;
    color: #2c3e50;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #2c3e50;
    text-align: left;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: #2980b9;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .legal-hero {
        padding: 80px 0;
    }

    .legal-hero h1 {
        font-size: 2.5rem;
    }
}