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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a0522d;
}

ul {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    background-color: #2c3e50;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Palatino', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu li a {
    color: #ecf0f1;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    border-bottom-color: #8b4513;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background-color: #8b4513;
    color: #fff;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Company Philosophy */
.company-philosophy {
    background-color: #fff;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    margin-bottom: 1rem;
}

.card-icon svg {
    fill: #8b4513;
}

.philosophy-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Featured Services */
.featured-services {
    background-color: #f8f9fa;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.service-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Statistics */
.statistics {
    background-color: #2c3e50;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

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

/* Company Story */
.company-story {
    background-color: #fff;
}

.story-content p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Benefits */
.benefits {
    background-color: #f8f9fa;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonials {
    background-color: #fff;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
}

.testimonial-card p {
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #8b4513;
    font-style: normal;
}

/* Process */
.process {
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

/* Industries Served */
.industries-served {
    background-color: #fff;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.industry-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

/* FAQ */
.faq {
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #8b4513;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Services Page Styles */
.services-intro {
    background-color: #fff;
    padding: 2rem 0;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

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

.service-block {
    background-color: #fff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.service-block h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: #8b4513;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.offering-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.offering-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.offering-item h4 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.price {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0.75rem;
}

.service-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.tier-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #8b4513;
}

.tier-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.purchase-list,
.consultation-list,
.authentication-list {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.purchase-list li,
.consultation-list li,
.authentication-list li {
    margin-bottom: 0.75rem;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.service-benefits {
    background-color: #fff;
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-point {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-point h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

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

/* About Page Styles */
.detailed-story {
    background-color: #fff;
}

.detailed-story p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.value-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.team {
    background-color: #fff;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

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

.milestones {
    background-color: #f8f9fa;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

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

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

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.achievements {
    background-color: #fff;
}

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

.achievement-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.achievement-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.trust-indicators {
    background-color: #f8f9fa;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.trust-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.philosophy-detailed {
    background-color: #fff;
}

.philosophy-detailed p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-info {
    background-color: #fff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-card {
    flex: 1 1 calc(50% - 1.5rem);
}

.contact-card h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p,
.detail-item a {
    font-size: 1rem;
    line-height: 1.6;
}

.directions {
    background-color: #f8f9fa;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.direction-item h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.company-description {
    background-color: #fff;
}

.company-description p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.additional-info {
    background-color: #fff;
}

.company-data {
    max-width: 600px;
    margin: 0 auto;
}

.company-data p {
    margin-bottom: 0.75rem;
}

.visit-note {
    background-color: #f8f9fa;
}

.visit-tips {
    max-width: 800px;
    margin: 2rem auto 0;
    list-style-position: inside;
}

.visit-tips li {
    margin-bottom: 1rem;
}

.cta-email {
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-email a {
    color: #fff;
    text-decoration: underline;
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
}

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

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.meanwhile {
    background-color: #f8f9fa;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.link-card h3 {
    color: #8b4513;
    margin-bottom: 0.75rem;
}

.contact-reminder {
    background-color: #fff;
}

.contact-quick {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-quick p {
    margin-bottom: 0.75rem;
}

/* Legal Pages Styles */
.legal-content {
    background-color: #fff;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.legal-content h3 {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #2c3e50;
    color: #fff;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    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: 1rem;
}

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

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

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

.cookie-option p {
    margin-left: 2rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .service-item,
    .benefit-item,
    .offering-item,
    .tier-card,
    .direction-item,
    .contact-card,
    .benefit-point,
    .achievement-item,
    .trust-item,
    .value-card,
    .team-member,
    .industry-item {
        flex: 1 1 100%;
    }

    .testimonial-card,
    .step-card,
    .link-card {
        flex: 1 1 100%;
    }

    .process-step,
    .flow-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        width: auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .modal-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero,
    .page-header {
        padding: 2.5rem 0;
    }

    .process-step,
    .flow-step {
        flex: 1 1 100%;
    }

    .service-block {
        padding: 2rem 1.5rem;
    }
}