/* =========================
   Reset & 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* =========================
   Accessibility
   ========================= */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 3px solid #0093D1;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0093D1;
    color: white;
    padding: 8px;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

p {
    margin-bottom: 1rem;
}

/* =========================
   Layout
   ========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

/* =========================
   Navigation
   ========================= */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0093D1;
}

.nav-menu a.active {
    color: #0093D1;
}

.nav-cta {
    background: linear-gradient(135deg, #0093D1 0%, #5CD27F 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #007AB0 0%, #4BB86D 100%);
}

/* Language switcher in navigation */
.nav-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1rem;
    margin-left: 1rem;
}

.nav-language a {
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-separator {
    color: #999;
    user-select: none;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-language {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 1rem;
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* =========================
   Cookie Consent
   ========================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    z-index: 9999;
    padding: 1.5rem;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #5CD27F;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   Buttons
   ========================= */
.btn-primary, .btn-secondary, .btn-primary-large {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0093D1 0%, #5CD27F 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #007AB0 0%, #4BB86D 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,147,209,0.3);
}

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

.btn-secondary:hover {
    background: linear-gradient(135deg, #0093D1 0%, #5CD27F 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-primary-large {
    background: linear-gradient(135deg, #0093D1 0%, #5CD27F 100%);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #007AB0 0%, #4BB86D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,147,209,0.3);
}

/* =========================
   Hero Section
   ========================= */
.hero {
    background: linear-gradient(135deg, #F2F4F7 0%, #E8F5F0 100%);
    padding: 6rem 0 4rem;
    margin-top: -1px;
    overflow: hidden;
    position: relative;
}

/* Floating shapes background */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 147, 209, 0.12) 0%, rgba(0, 147, 209, 0.03) 100%);
    top: -100px;
    right: -100px;
    animation: floatShape1 20s ease-in-out infinite;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(92, 210, 127, 0.12) 0%, rgba(92, 210, 127, 0.03) 100%);
    bottom: -50px;
    left: -50px;
    animation: floatShape2 25s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-50px, 80px) rotate(90deg);
    }
    50% {
        transform: translate(-100px, 50px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(80px, -60px) scale(1.1);
    }
    66% {
        transform: translate(40px, -100px) scale(0.9);
    }
}

/* Additional floating elements via box-shadows */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero .container::before,
.hero .container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero .container::before {
    width: 150px;
    height: 150px;
    background: rgba(0, 147, 209, 0.08);
    top: 20%;
    right: 15%;
    animation: floatSmall1 15s ease-in-out infinite;
}

.hero .container::after {
    width: 80px;
    height: 80px;
    background: rgba(92, 210, 127, 0.1);
    bottom: 30%;
    left: 10%;
    animation: floatSmall2 18s ease-in-out infinite;
}

@keyframes floatSmall1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(-40px, 60px);
        opacity: 1;
    }
}

@keyframes floatSmall2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, -40px) scale(1.3);
        opacity: 0.8;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .tagline {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.15s forwards;
}

.hero-content .hero-meta {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-content .skills-chips {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.45s forwards;
}

.hero-content .skills-chips .chip {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .skills-chips .chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,147,209,0.2);
}

.hero-content .hero-stats {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}


.hero-content .hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.75s forwards;
}

.hero-image {
    opacity: 0;
    animation: scaleIn 1s ease-out 0.4s forwards;
}

.hero-image img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,147,209,0.25);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero .container {
        grid-template-columns: 2fr 1fr;
    }
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.meta-item svg {
    flex-shrink: 0;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.chip {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2B2F33;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #F2F4F7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0093D1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #F2F4F7 0%, #E8F5F0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,147,209,0.1);
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(0,147,209,0.1);
}

/* =========================
   Trust Section
   ========================= */
.trust-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    min-height: 100px;
    text-align: center;
    color: #999;
}

/* =========================
   Services Preview
   ========================= */
.services-preview {
    background: white;
    padding: 5rem 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,147,209,0.15);
    border-left: 3px solid #FF6C2E;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #0093D1;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.link-arrow:hover {
    text-decoration: underline;
}

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

/* =========================
   Certifications
   ========================= */
.certifications-section {
    background: #f5f7fa;
    padding: 5rem 0;
}

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

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cert-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cert-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cert-issuer {
    color: #0093D1;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cert-date {
    color: #666;
    font-size: 0.9rem;
}

/* =========================
   CTA Section
   ========================= */
.cta-section {
    background: linear-gradient(135deg, #0093D1 0%, #34C38F 50%, #5CD27F 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.response-time {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* White button for CTA section to contrast with gradient background */
.btn-cta-white {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #0093D1;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta-white:hover {
    background: #F2F4F7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

/* =========================
   Footer
   ========================= */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* =========================
   Form Styles
   ========================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0093D1;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* =========================
   Utility Classes
   ========================= */
.text-center {
    text-align: center;
}

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

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

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

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

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 3rem 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}

/* =========================
   Services Page Styles
   ========================= */
.page-hero {
    background: linear-gradient(135deg, #0093D1 0%, #34C38F 50%, #5CD27F 100%);
    color: white;
    text-align: center;
    padding: 5rem 0 4rem;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.bg-light {
    background: #f5f7fa;
}

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

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

.service-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
}

.service-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

.service-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0093D1;
    font-weight: bold;
    font-size: 1.2rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(0,147,209,0.1) 0%, rgba(92,210,127,0.1) 100%);
    color: #0093D1;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0,147,209,0.2);
}

.service-cta-box {
    background: linear-gradient(135deg, #0093D1 0%, #34C38F 50%, #5CD27F 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.service-cta-box h4 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.service-cta-box .btn-primary {
    background: white;
    color: #0093D1;
}

.service-cta-box .btn-primary:hover {
    background: #F2F4F7;
    color: #0093D1;
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.additional-service {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #F2F4F7;
    transition: all 0.3s;
}

.additional-service:hover {
    border-color: #0093D1;
    transform: translateY(-2px);
}

.additional-service h4 {
    color: #0093D1;
    margin-bottom: 0.75rem;
}

.additional-service p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.working-process {
    background: white;
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0093D1 0%, #5CD27F 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

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

.process-step p {
    font-size: 0.95rem;
    color: #666;
}

/* =========================
   References Page
   ========================= */
.case-study {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid #F2F4F7;
}

.case-study-header {
    background: linear-gradient(135deg, #0093D1 0%, #34C38F 50%, #5CD27F 100%);
    color: white;
    padding: 2rem;
}

.case-study-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

.case-study-body {
    padding: 2rem;
}

.case-study-section {
    margin-bottom: 2rem;
}

.case-study-section h4 {
    color: #0093D1;
    margin-bottom: 0.75rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.result-item {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    color: #0093D1;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
}

/* =========================
   About Page
   ========================= */
.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .about-intro {
        grid-template-columns: 2fr 1fr;
    }
}

.about-image {
    display: flex;
    justify-content: center;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7.5px; /* Centered on 15px bullet (7.5px = half of 15px) */
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0093D1 0%, #5CD27F 100%);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.55rem; /* Adjusted to align with the line */
    top: 0.3rem; /* Align with first line of text */
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #0093D1;
    border-radius: 50%;
    box-shadow: 0 0 0 3px white; /* Add white background for better visibility */
}

.timeline-date {
    font-weight: bold;
    color: #0093D1;
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-company {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* =========================
   Contact Page
   ========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: #0093D1;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

/* =========================
   Accent Color Elements (Fox Orange)
   ========================= */
.accent-badge {
    background: #FF6C2E;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================
   Contact Page
   ========================= */
.contact-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

/* =========================
   Legal Pages (Impressum / Datenschutz)
   ========================= */
.legal-content {
    line-height: 1.7;
    color: #333;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #0093D1;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

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

.legal-content ul {
    margin: 0 0 1rem 1.5rem;
    padding-left: 0.5rem;
    list-style: disc;
}

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

.legal-content a {
    color: #0093D1;
    word-break: break-word;
}
