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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Header and Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #d97706;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Philosophy Section */
.philosophy {
    background-color: var(--bg-light);
}

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

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

/* Services Highlight */
.services-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 240px;
    padding: 1.5rem;
    text-align: center;
}

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

/* Company Story */
.company-story {
    background-color: var(--bg-light);
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.5;
}

.story-text p {
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    max-width: 400px;
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Benefits */
.benefits {
    background-color: var(--bg-light);
}

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

.benefit-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--bg-white);
}

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

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

/* Knowledge Section */
.knowledge {
    background-color: var(--bg-light);
}

.knowledge-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.knowledge-content {
    flex: 1.5;
}

.knowledge-list {
    list-style: none;
    margin-top: 1.5rem;
}

.knowledge-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.knowledge-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.knowledge-visual {
    flex: 1;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
    background-color: var(--bg-light);
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--bg-white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    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;
    gap: 2rem;
}

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

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

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

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

.modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

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

.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-description {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.modal-buttons .btn {
    flex: 1;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

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

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

/* About Page */
.about-intro {
    padding: 4rem 0;
}

.two-column-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.column-text {
    flex: 1.5;
}

.column-visual {
    flex: 1;
}

/* Values */
.values {
    background-color: var(--bg-light);
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

/* Team */
.team {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

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

.team-member {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Timeline */
.milestones {
    background-color: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* Approach */
.approach-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Industries */
.industries {
    background-color: var(--bg-light);
}

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

.industry-item {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

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

/* Certifications */
.certifications {
    padding: 4rem 0;
}

.cert-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.cert-text {
    flex: 1.5;
}

.cert-list {
    list-style: none;
    margin-top: 1rem;
}

.cert-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cert-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cert-visual {
    flex: 1;
}

/* Services Page */
.services-catalog {
    padding: 4rem 0;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

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

.service-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Service Benefits */
.service-benefits {
    background-color: var(--bg-light);
}

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

.benefit-item {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

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

/* Process Details */
.process-details {
    padding: 4rem 0;
}

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

.process-phase {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.phase-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Contact Page */
.contact-main {
    padding: 4rem 0;
}

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

.contact-info {
    flex: 1.5;
}

.contact-additional {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.info-card {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* Company Details */
.company-details {
    background-color: var(--bg-light);
}

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

.data-row {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.data-label {
    flex: 1;
    font-weight: 600;
}

.data-value {
    flex: 2;
}

.contact-about {
    padding: 4rem 0;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

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

.thankyou-message {
    font-size: 1.125rem;
    margin: 1.5rem 0;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

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

.legal-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
    }

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

    .philosophy-grid,
    .services-flex,
    .benefits-list,
    .stats-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .approach-grid,
    .industries-list,
    .benefits-comparison,
    .services-grid,
    .process-steps {
        flex-direction: column;
    }

    .story-layout,
    .knowledge-layout,
    .two-column-layout,
    .cert-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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