/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul {
    list-style: none;
}

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

/* ==========================================
   LAYOUT
   ========================================== */

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

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

    h2 {
        font-size: 2.25rem;
    }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

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

.nav {
    padding: 1rem 0;
}

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

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

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

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

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li a {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2563eb;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li a {
        font-size: 1rem;
        padding: 0;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #1e40af;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #64748b;
    color: #ffffff;
}

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

.btn-light {
    background-color: #ffffff;
    color: #2563eb;
}

.btn-light:hover {
    background-color: #f1f5f9;
    color: #1e40af;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
}

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

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: 3rem 0;
}

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

.page-header {
    background-color: #f8fafc;
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 0.5rem;
}

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

    .page-header {
        padding: 4rem 0 3rem;
    }
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */

.philosophy {
    background-color: #f8fafc;
}

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

.philosophy-item {
    text-align: center;
    padding: 1.5rem;
}

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

.philosophy-item h3 {
    margin-bottom: 0.75rem;
}

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

    .philosophy-item {
        flex: 1;
    }
}

/* ==========================================
   SERVICES
   ========================================== */

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

.service-card h3 {
    margin-bottom: 1rem;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:after {
    content: " →";
}

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

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

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

/* ==========================================
   STATISTICS
   ========================================== */

.statistics {
    background-color: #1e293b;
    color: #ffffff;
}

.statistics h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

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

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

    .stat-item {
        flex: 1 1 50%;
    }
}

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

/* ==========================================
   STORY & TEXT CONTENT
   ========================================== */

.story {
    background-color: #ffffff;
}

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

.intro-text {
    font-size: 1.125rem;
    max-width: 900px;
    margin: 0 auto;
    color: #475569;
}

/* ==========================================
   PROCESS STEPS
   ========================================== */

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
    background-color: #f8fafc;
}

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

.testimonial {
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

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

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

    .testimonial {
        flex: 1;
    }
}

/* ==========================================
   INDUSTRIES / WHO WE HELP
   ========================================== */

.industries-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.industry-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

    .industry-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .industry-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ==========================================
   KNOWLEDGE CARDS
   ========================================== */

.knowledge-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.knowledge-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

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

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

.faq {
    background-color: #ffffff;
}

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    color: #1a202c;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

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

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

/* ==========================================
   VALUES GRID
   ========================================== */

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

.value-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.value-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
}

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

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

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

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
    color: #94a3b8;
}

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

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .footer-col {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

    .cookie-content p {
        text-align: left;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

/* ==========================================
   COOKIE MODAL
   ========================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 1rem;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-header h3 {
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1e293b;
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-required {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: normal;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* ==========================================
   SERVICES DETAILED
   ========================================== */

.service-detail {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-header img {
    width: 80px;
    height: 80px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: 0.5rem;
}

.service-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
    color: #475569;
}

/* ==========================================
   SERVICE BENEFITS
   ========================================== */

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

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

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

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

@media (min-width: 1024px) {
    .benefit-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */

.comparison-table {
    max-width: 900px;
    margin: 2rem auto;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-situation {
    flex: 1;
}

.comparison-recommendation {
    flex: 1;
    color: #2563eb;
    font-weight: 600;
}

.comparison-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #64748b;
}

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

/* ==========================================
   STEPS GRID
   ========================================== */

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

.step-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

    .step-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .step-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

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

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

    .contact-info {
        flex: 1;
    }

    .contact-description {
        flex: 1.5;
    }
}

/* ==========================================
   TEAM SECTION
   ========================================== */

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

.team-member {
    text-align: center;
    padding: 1.5rem;
}

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

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

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

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

/* ==========================================
   MISSION SECTION
   ========================================== */

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-visual img {
    max-width: 100%;
}

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

/* ==========================================
   TIMELINE
   ========================================== */

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

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    flex-shrink: 0;
}

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

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

/* ==========================================
   RECOGNITION & PRINCIPLES
   ========================================== */

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

.recognition-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.recognition-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.principles-list {
    max-width: 900px;
    margin: 2rem auto;
}

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

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

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

.principle-content h3 {
    margin-bottom: 0.75rem;
}

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

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

    .recognition-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ==========================================
   APPROACH COLUMNS
   ========================================== */

.approach-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-col {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.approach-col h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

    .approach-col {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* ==========================================
   LEGAL CONTENT
   ========================================== */

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul,
.legal-text ol {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #475569;
}

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

.cookies-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table td {
    padding: 1rem;
    vertical-align: top;
}

.cookies-table td:first-child {
    font-weight: 600;
    width: 30%;
}

/* ==========================================
   THANK YOU PAGE
   ========================================== */

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}