/* ARUS Logistics - Main Stylesheet */
/* Extracted from embedded styles for better maintainability and translation support */

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

:root {
    /* Primary Colors (80% Usage) */
    --deep-ocean-blue: #0B4D7A;
    --clean-white: #FFFFFF;
    --professional-charcoal: #2D3748;
    
    /* Strategic Accent Colors (15% Usage) */
    --warm-coral: #FF6B47;
    --flowing-teal: #20B2AA;
    
    /* Supporting Colors (5% Usage) */
    --success-green: #16A085;
    --warning-amber: #F39C12;
    --light-gray: #F7FAFC;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--professional-charcoal);
    overflow-x: hidden;
}

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

/* Header */
header {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    opacity: 0.9;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--clean-white);
}

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

.nav-links a {
    color: var(--clean-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--flowing-teal);
}

.nav-links a.active {
    color: var(--flowing-teal);
}

/* Language Flags */
.language-flags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.flag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.flag-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--flowing-teal);
    transform: scale(1.1);
}

.flag-icon svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-icon.active {
    background: rgba(32, 178, 170, 0.2);
    border-color: var(--flowing-teal);
}

/* Hero Section */
.hero {
    background: var(--deep-ocean-blue);
    background-image: url('/assets/images/arus-logistics-network-black-wireframe.png');
    background-size: cover;
    background-position: center top 0px;
    background-repeat: no-repeat;
    color: var(--clean-white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 77, 122, 0.9) 0%, rgba(32, 178, 170, 0.1) 100%);
    opacity: 0.99;
}

.hero-content {
    position: relative;
    margin: 10px 10px 10px 10px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--flowing-teal);
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    animation: fadeInUp 1s ease 0.4s both;
}

.competitive-advantage {
    color: var(--flowing-teal);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--flowing-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--clean-white);
    font-weight: 600;
}

.feature-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: var(--clean-white);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--warm-coral);
    color: var(--clean-white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 71, 0.3);
    animation: fadeInUp 1s ease 0.8s both;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 71, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--deep-ocean-blue);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--professional-charcoal);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Problems Section */
.problems {
    background: var(--light-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.problem-card {
    background: var(--clean-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 77, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--deep-ocean-blue);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(11, 77, 122, 0.15);
}

.problem-card h3 {
    color: var(--deep-ocean-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.problem-card p {
    color: var(--professional-charcoal);
    line-height: 1.6;
}

/* FOB Section */
.fob-intro {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    text-align: center;
}

.fob-intro .section-title {
    color: var(--clean-white);
}

.fob-intro .section-subtitle {
    color: var(--clean-white);
}

.fob-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.fob-feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    border: 1px solid rgba(32, 178, 170, 0.3);
    width: 100%;
    max-width: 400px;
    min-height: 180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fob-feature h3 {
    color: var(--flowing-teal);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
}

.fob-feature p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background: var(--clean-white);
}

.pricing-intro {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.rate-card {
    background: var(--clean-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(11, 77, 122, 0.1);
    max-width: 700px;
    margin: 2rem auto;
    border: 2px solid var(--deep-ocean-blue);
}

.rate-card h3 {
    color: var(--deep-ocean-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.rate-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

.rate-table th,
.rate-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.rate-table th {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    font-weight: 600;
}

.savings {
    background: var(--success-green);
    color: var(--clean-white);
    font-weight: 600;
    text-align: center;
}

.rate-features {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.rate-features p {
    font-size: 0.95rem;
    color: var(--professional-charcoal);
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits {
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    justify-items: center;
}

.benefit-card {
    background: var(--clean-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(11, 77, 122, 0.1);
    text-align: center;
    border-top: 4px solid var(--flowing-teal);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.benefit-stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--success-green);
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--deep-ocean-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--professional-charcoal);
    line-height: 1.6;
}

.benefit-visual {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Payment Comparison Visual */
.payment-comparison {
    width: 100%;
    max-width: 200px;
}

.payment-bar {
    margin-bottom: 0.5rem;
    position: relative;
}

.payment-bar .bar-label {
    font-size: 0.8rem;
    color: var(--professional-charcoal);
    margin-bottom: 0.25rem;
    display: block;
}

.payment-bar .bar-fill {
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.traditional-fill {
    background: linear-gradient(90deg, #ff6b47 0%, #ff8a65 100%);
    width: 100%;
}

.arus-fill {
    background: linear-gradient(90deg, var(--success-green) 0%, #20b2aa 100%);
    width: 30%;
    position: relative;
    min-width: 80px;
}

.bar-text {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--professional-charcoal);
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Cost Chart Visual */
.cost-chart {
    width: 100%;
    max-width: 120px;
}

.chart-bars {
    display: flex;
    gap: 1rem;
    align-items: end;
    height: 60px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-container {
    height: 50px;
    width: 30px;
    background: var(--light-gray);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: end;
}

.cost-before {
    height: 100%;
    background: linear-gradient(180deg, #ff6b47 0%, #ff8a65 100%);
    border-radius: 4px;
}

.cost-after {
    height: 55%;
    background: linear-gradient(180deg, var(--success-green) 0%, #20b2aa 100%);
    border-radius: 4px;
}

.bar-value {
    position: absolute;
    top: -20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--professional-charcoal);
}

.chart-bar .bar-label {
    font-size: 0.8rem;
    color: var(--professional-charcoal);
    margin-top: 0.25rem;
}

/* Experience Timeline Visual */
.experience-timeline {
    width: 100%;
    max-width: 180px;
    position: relative;
}

.timeline-years {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.year-marker {
    background: var(--deep-ocean-blue);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.year-marker.current {
    background: var(--success-green);
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-ocean-blue) 0%, var(--success-green) 100%);
}

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

/* Process Section */
.process {
    background: var(--clean-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.process-step {
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(11, 77, 122, 0.08);
    border-top: 3px solid var(--flowing-teal);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--deep-ocean-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    color: var(--professional-charcoal);
    font-size: 0.95rem;
}

/* Network Coverage Section */
.network-coverage {
    background: var(--clean-white);
    position: relative;
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.map-container {
    position: relative;
}

.indonesia-map {
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(11, 77, 122, 0.1);
    background: var(--clean-white);
}

.network-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
}

.fob-point {
    filter: drop-shadow(0 2px 4px rgba(255, 107, 71, 0.3));
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--professional-charcoal);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.fob-dot {
    background: var(--warm-coral);
}

.legend-line {
    width: 20px;
    height: 2px;
    background: var(--flowing-teal);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--deep-ocean-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clean-white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(11, 77, 122, 0.1);
}

.tech-feature h4 {
    color: var(--deep-ocean-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.tech-feature p {
    color: var(--professional-charcoal);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.service-card {
    background: var(--clean-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 77, 122, 0.08);
    border-left: 4px solid var(--flowing-teal);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.service-card h3 {
    color: var(--deep-ocean-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--professional-charcoal);
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
}

.comparison .section-title {
    color: var(--clean-white);
}

.comparison .section-subtitle {
    color: var(--clean-white);
}

.comparison-table {
    background: var(--clean-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--professional-charcoal);
    color: var(--clean-white);
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.5rem;
    color: var(--professional-charcoal);
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
}

.arus-column {
    background: rgba(22, 160, 133, 0.1);
    border-left: 4px solid var(--success-green);
}

/* Contact Section */
.contact {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    text-align: center;
}

.contact .section-title {
    color: var(--clean-white);
}

.contact .section-subtitle {
    color: var(--clean-white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(32, 178, 170, 0.3);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.contact-item h3 {
    color: var(--flowing-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--light-gray);
}

/* About Page Specific Styles */
.story {
    background: var(--clean-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--professional-charcoal);
}

.story-text h3 {
    color: var(--deep-ocean-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.story-visual {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.ols-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

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

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.timeline-year {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    font-size: 0.9rem;
}

.timeline-desc {
    flex: 1;
    color: var(--professional-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.fob-origin {
    background: var(--light-gray);
}

.fob-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.fob-content h3 {
    color: var(--deep-ocean-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fob-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--professional-charcoal);
}

.roadmap {
    background: var(--clean-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--flowing-teal);
}

.roadmap h4 {
    color: var(--deep-ocean-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.roadmap ul {
    list-style: none;
    padding: 0;
}

.roadmap li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--flowing-teal);
    font-weight: bold;
}

.team {
    background: var(--clean-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-member {
    background: var(--clean-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(11, 77, 122, 0.1);
    text-align: center;
    border-top: 4px solid var(--flowing-teal);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--light-gray);
}

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

.team-member h3 {
    color: var(--deep-ocean-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.member-title {
    color: var(--flowing-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--professional-charcoal);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-block;
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.linkedin-link:hover {
    background: var(--flowing-teal);
}

.mission {
    background: var(--deep-ocean-blue);
    color: var(--clean-white);
    text-align: center;
}

.mission .section-title {
    color: var(--clean-white);
}

.mission .section-subtitle {
    color: var(--clean-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.mission-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(32, 178, 170, 0.3);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--flowing-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 48px;
    height: 48px;
}

.mission-item h3 {
    color: var(--flowing-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-item p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Privacy Page Specific Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.privacy-content h1 {
    color: var(--deep-ocean-blue);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.privacy-content h2 {
    color: var(--deep-ocean-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

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

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.back-button {
    display: inline-block;
    background: var(--flowing-teal);
    color: var(--clean-white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button:hover {
    background: var(--deep-ocean-blue);
}

/* Footer */
footer {
    background: var(--professional-charcoal);
    color: var(--clean-white);
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--flowing-teal);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--clean-white);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clean-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .fob-features,
    .benefits-grid,
    .services-grid,
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-grid,
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--deep-ocean-blue);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(32, 178, 170, 0.3);
    }

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

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

    /* Language flags in mobile menu */
    .language-flags {
        justify-content: center;
        margin-left: 0;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(32, 178, 170, 0.3);
    }

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

    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .problems-grid,
    .fob-features,
    .benefits-grid,
    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .map-legend {
        flex-direction: column;
        gap: 1rem;
    }

    .rate-table {
        font-size: 0.85rem;
        min-width: 600px;
    }

    .rate-table th,
    .rate-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }

    .rate-table-container {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .team-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .problems-grid,
    .process-steps,
    .fob-features,
    .benefits-grid,
    .services-grid,
    .contact-info,
    .team-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
}