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

/* Focus styles for accessibility */
*:focus {
    outline: 3px solid #2c6fa5;  /* Thicker and darker for better visibility */
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid #2c6fa5;
    outline-offset: 2px;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0a3d62;  /* Darkened for better contrast */
    --text-light: #ffffff;     /* Pure white for better contrast */
    --text-dark: #1a1a1a;      /* Darker for better contrast */
    --highlight: #1d4e7d;      /* Much darker for AAA compliance (7:1 ratio) */
}

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

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 2000;
}

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

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

/* Navigation */
header {
    background: var(--primary-color);
    color: var(--text-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.online-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00d068;
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 0 10px rgba(0, 208, 104, 0.6);
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}


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

/* Mobile menu button - hidden by default */
.mobile-menu-toggle {
    display: none;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--highlight);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-toggle img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-toggle.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: background 0.2s ease;
    text-decoration: none;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option.active {
    background: var(--highlight);
    color: white;
}

.language-option img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 10rem 0 6rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Retro Canvas Background */
#retroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.availability-hero {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--highlight);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(50, 130, 184, 0.3);
}

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

/* Services */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Products */
.products {
    padding: 5rem 0;
    background: #f8f9fa;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-tagline {
    color: #4a4a4a;  /* Darker for better contrast on white */
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features li {
    padding: 0.5rem 0;
    color: #2c2c2c;  /* Darker for better contrast - WCAG AA compliant */
}

.product-price {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.product-price strong {
    color: var(--highlight);
    font-size: 1.5rem;
}

.product-cta {
    display: block;
    text-align: center;
    background: var(--highlight);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 130, 184, 0.3);
}

.products-note {
    text-align: center;
    color: #4a4a4a;  /* Darker for better contrast */
    font-style: italic;
    margin-top: 2rem;
}

/* Support Services */
.support-services {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.support-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.support-availability {
    text-align: center;
    font-size: 1.2rem;
    color: #004d26;  /* Even darker green for WCAG AAA compliance (7:1 ratio) */
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

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

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

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.support-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.support-features li {
    padding: 0.5rem 0;
    color: #2c2c2c;  /* Darker for better contrast */
}

.support-price {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.support-price strong {
    color: var(--highlight);
    font-size: 1.3rem;
}

/* About */
.about {
    padding: 5rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #62a3d4;  /* Light blue with good contrast on dark background */
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Experience */
.experience {
    padding: 5rem 0;
    background: #f8f9fa;
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.experience-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.rolf-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 4px solid var(--highlight);
}

.experience-intro {
    text-align: left;
}

.experience-intro h2 {
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--accent-color);
}

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

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

.timeline-date {
    min-width: 120px;
    font-weight: 600;
    color: var(--accent-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Skills */
.skills-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--highlight);
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c2c2c;  /* Darker for better contrast */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--highlight);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimonial-author strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #595959;  /* Darker for better contrast */
    font-size: 0.9rem;
}

.testimonial-company {
    color: var(--highlight);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    transition: color 0.3s;
}

.testimonial-company:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.testimonial-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #004c73;  /* Darker LinkedIn blue for WCAG AAA compliance (7:1 ratio) */
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: color 0.3s;
    font-weight: 500;
}

.testimonial-linkedin:hover {
    color: #003352;  /* Even darker on hover */
    text-decoration: underline;
}

.testimonial-linkedin svg {
    width: 16px;
    height: 16px;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.contact-info p {
    margin-bottom: 1rem;
}

.availability-badge {
    background: linear-gradient(135deg, #00a652, #00d068);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 166, 82, 0.3);
}

.contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.contact-cta p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-accessibility {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-accessibility a {
    color: #8fc4e8;  /* Even lighter blue for AAA contrast on dark footer (7:1) */
    font-weight: 500;
}

.footer-accessibility a:hover {
    text-decoration: underline;
    color: #a8d2ec;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1500;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #1a1a2e;
    border-radius: 15px;
    padding: 20px;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.video-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-bubble-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--highlight);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(50, 130, 184, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    animation: pulse-bubble 2s infinite;
    cursor: pointer;
}

.chat-bubble-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(50, 130, 184, 0.6);
    background: #2a6fa8;
}

.chat-bubble-text {
    font-size: 1rem;
}

.chat-bubble-icon {
    font-size: 1.3rem;
}

@keyframes pulse-bubble {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Chat Popup */
.chat-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    transition: width 0.3s ease, height 0.3s ease, bottom 0.3s ease, right 0.3s ease;
}

.chat-popup.active {
    display: flex;
}

.chat-popup.maximized {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50vw !important;
    height: 90vh !important;
    max-width: 900px !important;
    max-height: calc(100vh - 40px) !important;
    border-radius: 10px !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
}

.chat-popup.maximized .chat-popup-header {
    border-radius: 10px 10px 0 0 !important;
}

.chat-popup.maximized #chatFrame {
    border-radius: 0 0 10px 10px !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-popup-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-popup-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.chat-close:hover {
    background: rgba(255,255,255,0.1);
}

#chatFrame {
    flex: 1;
    width: 100%;
    border: none;
    border-radius: 0 0 15px 15px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
    }
    
    .language-selector {
        position: absolute;
        top: 1rem;
        right: 50px;
        transform: scale(0.8); /* Make it smaller */
        z-index: 1002;
    }
    
    .language-toggle {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .language-toggle img {
        width: 14px;
        height: 11px;
    }
    
    .language-toggle span:not(.dropdown-arrow) {
        display: none; /* Hide text on mobile, show only flag */
    }
    
    .language-dropdown {
        right: 0;
        min-width: 120px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        background: var(--primary-color);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 1rem;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    /* Support Services Mobile */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .support-title {
        font-size: 1.5rem;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Experience Mobile */
    .experience-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .experience-intro {
        text-align: center;
    }
    
    .rolf-image {
        width: 120px;
        height: 120px;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-date {
        font-size: 0.9rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Skills Mobile */
    .skills-grid {
        gap: 0.5rem;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Contact Mobile */
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 0 1rem;
    }
    
    /* General Mobile Adjustments */
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    /* Chat Bubble Mobile */
    .chat-bubble {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-bubble-link {
        padding: 12px 16px;
    }
    
    .chat-bubble-text {
        font-size: 0.9rem;
    }
    
    /* Chat Popup Mobile */
    .chat-popup {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        border-radius: 0;
        max-width: none;
    }
    
    .chat-popup-header {
        border-radius: 0;
    }
    
    #chatFrame {
        border-radius: 0;
    }
}