/* 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: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8941f;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px 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: 1rem 0;
}

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

.nav {
    display: none;
}

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

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

.nav.mobile-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav.mobile-active .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

.nav.mobile-active .nav-link {
    display: block;
    padding: 1rem 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
}

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

.hero h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual {
    margin-top: 2rem;
}

.hero-visual img {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #b8941f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

section h2 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Company Intro */
.company-intro {
    background-color: #f8f9fa;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.intro-text p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #5a6c7d;
    font-size: 1rem;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    background-color: #f8f9fa;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-text h2 {
    text-align: left;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.values-list li {
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #d4af37;
    border-radius: 50%;
}

.values-list strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.values-list span {
    color: #5a6c7d;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #5a6c7d;
}

/* Testimonials */
.testimonials {
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials h2 {
    color: #ffffff;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-text p {
    font-size: 1.125rem;
    font-style: italic;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #d4af37;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #adb5bd;
    font-size: 0.875rem;
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.industry-item img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

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

.industry-item p {
    color: #5a6c7d;
    font-size: 0.875rem;
}

/* Benefits Layout */
.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-block {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.benefit-block h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.benefit-block p {
    color: #5a6c7d;
}

/* Knowledge Grid */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.knowledge-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.knowledge-card h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.knowledge-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-icon {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

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

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

/* CTA Sections */
.cta-final {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #ffffff;
}

.cta-final h2 {
    color: #ffffff;
}

.cta-final p {
    color: #ffffff;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
    text-align: center;
}

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

.cta-box {
    text-align: center;
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.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: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

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

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

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

.cookie-modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

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

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

.cookie-option p {
    color: #5a6c7d;
    font-size: 0.875rem;
    margin: 0;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.story-text p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

/* Mission Section */
.mission {
    background-color: #f8f9fa;
}

.mission-content h2 {
    text-align: center;
}

.mission-content > p {
    text-align: center;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mission-item h3 {
    color: #d4af37;
    margin-bottom: 0.75rem;
}

.mission-item p {
    color: #5a6c7d;
}

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

.team-member {
    text-align: center;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background-color: #e9ecef;
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.team-role {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #5a6c7d;
    font-size: 0.875rem;
}

/* Principles Layout */
.principles-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    display: flex;
    gap: 1.5rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.principle-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.principle-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.principle-card p {
    color: #5a6c7d;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d4af37;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d4af37;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #d4af37;
}

.timeline-year {
    display: inline-block;
    background-color: #d4af37;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.timeline-content p {
    color: #5a6c7d;
}

/* Expertise Grid */
.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.expertise-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: #5a6c7d;
}

/* Certifications */
.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cert-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.cert-item p {
    color: #5a6c7d;
    font-weight: 600;
}

/* Service Detail */
.service-detail {
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
}

.service-title-block h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: #5a6c7d;
    font-size: 1.125rem;
}

.service-description p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-description h3 {
    color: #2c3e50;
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    color: #5a6c7d;
    position: relative;
}

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

.price-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.price-label {
    color: #5a6c7d;
    font-size: 0.875rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-col {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.comparison-col h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: left;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    padding-left: 1.5rem;
    color: #5a6c7d;
    position: relative;
}

.comparison-list.positive li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.comparison-list.neutral li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5a6c7d;
}

/* Process Detailed */
.process-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-item {
    display: flex;
    gap: 1.5rem;
}

.process-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.process-content h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.process-content p {
    color: #5a6c7d;
}

/* Contact Layout */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #5a6c7d;
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: #d4af37;
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: #adb5bd;
    margin-top: 0.5rem;
}

.contact-description h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-description h3 {
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem;
}

.contact-description p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.parking-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 4px;
}

.parking-note strong {
    color: #856404;
}

/* Company Info Section */
.company-info-section {
    background-color: #f8f9fa;
}

.company-info-content p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Response Grid */
.response-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.response-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.response-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.response-card p {
    color: #5a6c7d;
}

.email-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: underline;
}

/* Thank You Section */
.thankyou-section {
    padding: 5rem 0;
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thankyou-content h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thankyou-text {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Next Steps */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #5a6c7d;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-intro {
    font-size: 1.125rem;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-align: left;
}

.legal-content h3 {
    color: #2c3e50;
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
}

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

.legal-updated {
    color: #adb5bd;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 2rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text {
        flex: 1;
    }

    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }

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

    .service-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text,
    .philosophy-visual {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .testimonial {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .industry-item {
        flex: 1;
        min-width: calc(33.333% - 1rem);
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-block {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

    .knowledge-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-visual {
        flex: 1;
    }

    .mission-grid {
        flex-direction: row;
    }

    .mission-item {
        flex: 1;
    }

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

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

    .principles-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

    .expertise-item {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

    .cert-item {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .service-header {
        flex-direction: row;
        align-items: center;
    }

    .benefits-comparison {
        flex-direction: row;
    }

    .comparison-col {
        flex: 1;
    }

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

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

    .response-grid {
        flex-direction: row;
    }

    .response-card {
        flex: 1;
    }

    .thankyou-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav {
        display: block;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        text-align: left;
    }

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

    .hero-text {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-visual {
        margin-top: 0;
        flex: 1;
    }

    .services-grid .service-card {
        min-width: calc(25% - 1.125rem);
    }

    .process-steps .process-step {
        min-width: calc(25% - 1.5rem);
    }

    .testimonials-grid .testimonial {
        min-width: calc(33.333% - 1.333rem);
    }

    .industries-grid .industry-item {
        min-width: calc(16.666% - 1.25rem);
    }

    .benefits-layout .benefit-block {
        min-width: calc(33.333% - 1rem);
    }

    .knowledge-grid .knowledge-card {
        min-width: calc(33.333% - 1rem);
    }

    .team-grid .team-member {
        min-width: calc(25% - 1.5rem);
    }

    .principles-layout .principle-card {
        min-width: calc(33.333% - 1rem);
    }

    .expertise-grid .expertise-item {
        min-width: calc(33.333% - 1rem);
    }

    .cert-grid .cert-item {
        min-width: calc(25% - 1.125rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .steps-grid .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-card .step-number {
        margin: 0 auto 1rem;
    }
}