.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://upload.wikimedia.org/wikipedia/commons/f/f4/Computer_programming_class.jpg') center/cover no-repeat;
    box-sizing: border-box;
    padding-bottom: 40px;
}
.hero-content-login {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer {
    margin-top: 0;
}
.hero-content-login h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #222;
}
.hero-content-login p {
    margin-bottom: 24px;
    color: #555;
}
.hero-content-login form input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.hero-content-login form button {
    width: 100%;
    padding: 12px;
    background: #0077ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}
.hero-content-login form button:hover {
    background: #005fcc;
}
@media (max-width: 600px) {
    .hero-content-login {
        padding: 24px 8px;
    }
}


.services-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 116, 217, 0.10);
    padding: 32px 24px;
    text-align: center;
    width: 100%;
    max-width: 640px;
    min-width: 0;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0 0 18px 0;
}
@media (max-width: 700px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 0 2vw;
        overflow-x: visible;
    }
    .service-card {
        width: 120vw; /* gamla 95vw */
        max-width: 120vw; /* gamla 99vw */
        margin: 0 auto 14px auto;
        padding: 16px 2vw;
        font-size: 0.98rem;
    }
}
.nav-main {
    display: flex;
    align-items: center;
    padding: 0.3rem 1.2rem 0.3rem 1.2rem;
    min-height: 44px;
    background: none;
    width: 90%;
    max-width: 100vw;
    box-sizing: border-box;
}
.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
}
.spacer {
    flex: 1 1 auto;
}
.nav-links {
    display: flex;
    gap: 1.1rem;
    margin-right: auto;
    margin-left: 0;
    padding: 0.2rem 0 0.2rem 0;
    align-items: center;
    background: none;
    flex: 0 0 auto;
    order: 2;
    list-style: none;
}
.lang-switcher.desktop-lang {
    margin-left: 1.2rem;
    order: 3;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100vw;
    background: linear-gradient(120deg, rgba(0,116,217,0.65) 0%, rgba(0,198,255,0.45) 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.4s, box-shadow 0.4s;
    padding: 0;
    margin: 0;
}
.navbar.scrolled {
    background: rgba(0, 116, 217, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    transition: background 0.4s, box-shadow 0.4s;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.desktop-lang {
    display: flex;
}
.mobile-lang {
    display: none;
}
@media (max-width: 700px) {
    .nav-main {
        display: flex;
        align-items: center;
        width: 100vw;
        padding: 0.2rem 2vw 0.2rem 2vw;
        min-height: 34px;
        gap: 1.2rem;
    }
    .logo {
        font-size: 1rem;
        padding: 0;
        margin: 0;
        text-align: left;
        flex: 0 0 auto;
    }
    .spacer {
        display: none;
    }
    .lang-switcher.desktop-lang {
        margin-left: 1.2rem;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0,116,217,0.13);
        border-radius: 0 0 12px 12px;
        flex-direction: column;
        align-items: stretch;
        .nav-main {
            display: flex;
            align-items: center;
            padding: 0.3rem 1.2rem 0.3rem 1.2rem;
            min-height: 44px;
            background: none;
            width: 100%;
            max-width: 100vw;
            box-sizing: border-box;
        }
        .nav-links {
            display: flex;
            gap: 1.1rem;
            margin-right: auto;
            margin-left: 0;
            padding: 0.2rem 0 0.2rem 0;
            align-items: center;
            background: none;
            flex: 0 0 auto;
            order: 2;
            list-style: none;
        }
        .lang-switcher.desktop-lang {
            margin-left: 1.2rem;
            order: 3;
        }
    }
    .mobile-lang {
        display: block !important;
        width: 100%;
        text-align: right;
        margin-top: 0.5rem;
    }
    .nav-actions {
        gap: 0.2rem;
    }
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.1rem;
    margin: 0;
    padding: 0.2rem 1.2rem 0.2rem 1.2rem;
    align-items: center;
    justify-content: center;
    background: none;
    .nav-links .lang-switcher {
        display: none;
    }
}

@media (max-width: 700px) {
    .nav-main {
        width: 100vw;
        padding: 0.2rem 2vw 0.2rem 2vw;
        min-height: 34px;
    }
    .logo {
        font-size: 1rem;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    .lang-switcher {
        display: none !important;
    }
        .nav-links .lang-switcher {
            display: flex !important;
            justify-content: flex-end;
            width: 100%;
            margin: 0.5rem 0 0.2rem 0;
        }
    .burger {
        display: flex !important;
        margin: 0;
        margin-left: 0.5rem;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0,116,217,0.13);
        border-radius: 0 0 12px 12px;
        flex-direction: column;
        align-items: stretch;
        min-width: 0;
        padding: 0.5rem 0 0.5rem 0;
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s, transform 0.25s;
        z-index: 150;
        display: none;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        display: flex;
    }
    .nav-links a {
        color: #0074D9 !important;
        font-weight: 600;
        padding: 12px 24px;
        width: 100%;
        text-align: right;
        font-size: 1.1rem;
        background: transparent;
            padding: 14px 28px;
            font-size: 1.15rem;
            background: #f2f8ff;
            border-radius: 8px;
            margin: 6px 0;
            box-shadow: 0 2px 8px rgba(0,116,217,0.07);
            transition: background 0.18s, color 0.18s, box-shadow 0.18s;
            border: none;
            outline: none;
            display: block;
        }
            .nav-links a:hover, .nav-links a:focus {
                background: #e6f7ff;
                color: #00c6ff !important;
                box-shadow: 0 4px 16px rgba(0,116,217,0.13);
            }
    }
    .nav-links a:hover {
        background: #e6f7ff;
        color: #00c6ff !important;
    }
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }


body, html {
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
    display: none; 
}
@media (max-width: 700px) {
    html, body, .hero-section, .container, .section {
        max-width: 100vw !important;
            overflow-x: hidden; 
    }
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 2vw 0 2vw;
        gap: 0.2rem;
        min-height: 0;
            width: 100vw; 
    }
    .logo {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
        padding: 0;
    }
    .lang-switcher {
        align-self: flex-end;
        margin: 0 0 0.3rem 0;
    }
    .burger {
        margin-right: 0;
    }
    .nav-links {
        right: 2vw;
        min-width: 120px;
        padding: 8px 0 8px 0;
    }
    .nav-links a {
        font-size: 0.98rem;
        padding: 10px 16px;
    }
    .hero-section {
        height: 48vh;
        min-height: 220px;
    }
    .hero-content {
        top: 38%;
        left: 50%;
        transform: translate(-50%, -38%);
        padding: 0 2vw;
    }
    .hero-content h1 {
        font-size: 1rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    .about-section, .contact-section {
        border-radius: 8px;
        margin-top: 0;
        box-shadow: 0 2px 8px rgba(0,116,217,0.08);
        padding: 18px 2vw;
    }
    .container {
        flex-direction: column;
        gap: 18px;
        padding: 0 2vw;
    }
    .about-image img, .contact-image img {
        width: 90px;
        height: 90px;
        margin-bottom: 8px;
    }
    .about-text h2, .services-title, .contact-title {
        font-size: 1.1rem;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    .services-section {
        padding: 10px 0;
    }
    .services-grid {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }
    .service-card {
        width: 120vw; /* gamla 98vw */
        max-width: 99vw;
        padding: 12px 4vw;
        margin: 0 auto;
        font-size: 0.98rem;
    }
    .service-card img {
        width: 60px;
        height: 60px;
    }
    .footer-content p {
        font-size: 0.85rem;
        padding: 0 2vw;
    }
    .lang-btn {
        width: 30px;
        height: 30px;
    }
    .flag-icon {
        width: 18px;
        height: 13px;
    }
    .scroll-down {
        font-size: 1.3rem;
    }
}
@media (max-width: 700px) {
    html, body, .hero-section, .container, .section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}
body, html {
    overflow-x: visible; 
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    margin: 0;
    padding: 0;
}
.burger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 4px 0;
    background: #0074D9;
    border-radius: 2px;
    transition: 0.3s;
}
.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 700px) {
    .burger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        right: 10px;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0,116,217,0.13);
        border-radius: 12px;
        flex-direction: column;
        align-items: flex-end;
        min-width: 140px;
        padding: 12px 0 12px 0;
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s, transform 0.25s;
        z-index: 150;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links a {
        color: #0074D9;
        padding: 12px 24px;
        width: 100%;
        text-align: right;
        font-size: 1.1rem;
    }
    .nav-links a:hover {
        background: #e6f7ff;
        color: #00c6ff;
    }
    .navbar {
        position: relative;
        overflow-x: visible;
    }
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 8px 0 8px;
        gap: 0.5rem;
    }
    .logo {
        text-align: center;
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    .lang-switcher {
        align-self: flex-end;
        margin: 0 0 0.5rem 0;
    }
    .nav-links {
        flex-direction: row;
        justify-content: center;
        gap: 0.7rem;
        margin: 0 0 0.5rem 0;
    }
    .nav-links a {
        font-size: 1rem;
        padding: 8px 6px;
    }
    .hero-section {
        height: 60vh;
        min-height: 340px;
    }
    .hero-content {
        top: 40%;
    }
    .hero-content h1 {
        font-size: 1.1rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .about-image img, .contact-image img {
        width: 120px;
        height: 120px;
    }
    .service-card {
        width: 120vw; /* gamla 95vw */
        max-width: 640px;
        padding: 18px 8px;
    }
    .section {
        padding: 24px 0;
    }
    .about-section, .contact-section {
        border-radius: 10px;
        margin-top: 0;
    }
    .services-grid {
        gap: 12px;
    }
    .footer-content p {
        font-size: 0.9rem;
    }
    .lang-btn {
        width: 34px;
        height: 34px;
    }
    .flag-icon {
        width: 22px;
        height: 16px;
    }
}
.no-break {
    white-space: nowrap;
}
.lang-switcher {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
    gap: 0.2rem;
}
.lang-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px rgba(0,116,217,0.10);
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}
.lang-btn.active, .lang-btn:focus {
    border: 2px solid #0074D9;
    background: #e6f7ff;
    outline: none;
}
.flag-icon {
    width: 28px;
    height: 21px;
    border-radius: 3px;
    box-shadow: none;
    transition: transform 0.15s;
}
.lang-btn:hover .flag-icon {
    transform: scale(1.12) rotate(-3deg);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.1rem;
    margin: 0 0 0 0.5rem;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8fbff;
    color: #222;
    overflow-x: hidden;
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}
body::-webkit-scrollbar {
    display: none; 
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(120deg, #0074D9 0%, #00c6ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 60px 0 60px;
    z-index: 100;
    position: sticky;
    top: 0;
    background: linear-gradient(120deg, rgba(0,116,217,0.65) 0%, rgba(0,198,255,0.45) 100%);
    box-shadow: none;
    transition: background 0.4s, box-shadow 0.4s, padding 0.3s, backdrop-filter 0.4s;
    backdrop-filter: blur(0px);
}
.navbar.scrolled {
    background: rgba(0, 116, 217, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    padding: 12px 40px 0 40px;
    backdrop-filter: blur(8px);
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #00c6ff;
}
.hero-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-content .highlight {
    color: #00c6ff;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.scroll-down {
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
.hero-image-placeholder {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}
.hero-image-placeholder img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.85;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, #0074D9cc 0%, #00c6ff99 100%);
    z-index: 1;
}
.section {
    padding: 80px 0;
    background: #f8fbff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
}
.about-section {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 116, 217, 0.08);
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
.about-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 116, 217, 0.12);
}
.about-text {
    flex: 1;
}
.about-text h2 {
    color: #0074D9;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.about-text p {
    font-size: 1.1rem;
    color: #333;
}
.services-section {
    background: url('https://upload.wikimedia.org/wikipedia/commons/f/f4/Computer_programming_class.jpg') center/cover no-repeat;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 116, 217, 0.08);
    margin-top: 40px;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 80px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.services-section .overlay-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,116,217,0.75) 0%, rgba(0,198,255,0.45) 100%);
    z-index: 1;
    border-radius: 32px;
}
.services-section .container {
    position: relative;
    z-index: 2; 
}
.services-section .section-title,
.services-section .about-text h2 {
    color: #fff;
}

.services-section .service-card {
    background: transparent;
    color: #fff;
    border-radius: 0;
    padding: 40px 20px;
    border: none;
    backdrop-filter: none;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.services-section .service-card:hover {
    background: transparent;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: none;
}

.services-section .service-card img {
    display: none;
}

.services-section .service-card h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-section .service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-section .service-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 116, 217, 0.10);
    padding: 32px 24px;
    text-align: center;
    width: 100%;
    max-width: 640px;
    min-width: 0;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0 auto 18px auto;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 116, 217, 0.16);
}
.service-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #e6f7ff;
}
.service-card h3 {
    color: #0074D9;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: #333;
    font-size: 1rem;
}
.contact-section {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 116, 217, 0.08);
    margin-top: 40px;
    position: relative;
    z-index: 2;
}
.contact-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.contact-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 116, 217, 0.12);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 260px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid #cce6ff;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8fbff;
    resize: none;
}
.contact-form button {
    background: linear-gradient(90deg, #0074D9 0%, #00c6ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: linear-gradient(90deg, #00c6ff 0%, #0074D9 100%);
}
footer {
    background: #0074D9;
    color: #fff;
    text-align: center;
    padding: 32px 0 16px 0;
    margin-top: 40px;
}
.footer-content p {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .container, .contact-content {
        flex-direction: column;
        align-items: center;
    }
    .navbar {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px 0 16px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .about-image img, .contact-image img {
        width: 180px;
        height: 180px;
    }
    .service-card {
        width: 100%;
        max-width: 640px; /* widened from 340px */
        min-width: 0;
        margin: 0 auto 18px auto;
    }
    .services-grid {
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .navbar {
        padding: 12px 4px 0 4px;
    }
    .section {
        padding: 40px 0;
    }
    .about-section, .contact-section {
        border-radius: 16px;
    }
    .service-card {
        width: 100%;
        max-width: 99vw;
        min-width: 0;
        margin: 0 auto 12px auto;
        padding: 16px 4vw;
    }
}

.boka-button {
    margin-top: 12px;
    padding: 10px 20px;
    background: #0074D9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
    .boka-button:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(0,116,217,0.18);
    }

.services-section .boka-button {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    margin-top: 16px;
}

.services-section .boka-button:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 116, 217, 0.3);
}

.services-section .boka-button:active {
    transform: scale(0.95);
    box-shadow: 0 4px 16px rgba(0, 116, 217, 0.25);
}

.team-section {
    background: #f8fbff;
    padding: 80px 0;
    text-align: center;
}

.team-section .container {
    flex-direction: column;
    gap: 40px;
}

.team-section .section-title {
    color: #0074D9;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.services-section .section-title {
    color: #0074D9;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 116, 217, 0.10);
    padding: 30px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 116, 217, 0.16);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #0074D9;
    box-shadow: 0 2px 8px rgba(0, 116, 217, 0.12);
}

    .team-card h2 {
        color: #0074D9;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .team-card h4 {
        color: #00c6ff;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .team-card p {
        color: #555;
        font-size: 1rem;
        line-height: 1.5;
    }@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-section .section-title {
        font-size: 1.8rem;
    }
    .team-card {
        padding: 20px;
    }
    .team-card img {
        width: 100px;
        height: 100px;
    }
    .team-card h2 {
        font-size: 1.3rem;
    }
    .team-card p {
        font-size: 0.9rem;
    }
}