/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 100px;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f6f6;
    color: #233942;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 7vw;
    box-shadow: 0 2px 8px rgba(20, 20, 20, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav a.menu-box {
    background: linear-gradient(90deg, #19b6a7 0%, #af2d7c 100%);
    color: #fff !important;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 28px;
    box-shadow: 0 2px 8px rgba(24,142,153,0.09);
    transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.14s;
    margin: 0 6px;
    font-size: 1.22rem;
    display: inline-block;
    border: none;
}

nav a.menu-box:hover,
nav a.menu-box:focus {
    background: linear-gradient(90deg, #af2d7c 0%, #19b6a7 100%);
    color: #fff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(24,142,153,0.13);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 270px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(24,142,153,0.09);
    z-index: 999;
    margin-top: 0;
    padding: 12px 0;
}

.dropdown-content li {
    display: block;
    margin: 0;
}

.dropdown-content a {
    color: #188e99;
    padding: 12px 22px;
    display: block;
    text-align: left;
    text-decoration: none;
    font-size: 1.07rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
    position: relative;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, #19b6a7 0%, #af2d7c 100%);
    color: #fff !important;
    padding-left: 32px;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Optional: highlight main menu item when dropdown is open */
.dropdown:hover > a.menu-box,
.dropdown:focus-within > a.menu-box {
    background: linear-gradient(90deg, #af2d7c 0%, #19b6a7 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(24,142,153,0.11);
}

@media (max-width: 900px) {
    .dropdown-content {
        left: auto;
        right: 0;
        min-width: 180px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #19b6a7 0%, #af2d7c 100%);
    color: #fff;
    text-align: center;
    padding: 80px 10vw 64px 10vw;
}

.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Services Section */
#services {
    background: #f6f6f6;
    padding: 56px 10vw;
}

#services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 36px;
    color: #188e99;
}

.services-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.service {
    background: #f1fafd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(24,142,153,0.07);
    padding: 32px 28px;
    width: 300px;
    max-width: 100%;
    text-align: center;
    transition: transform 0.18s;
}

.service:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 20px rgba(24,142,153,0.14);
}

.service h3 {
    color: #af2d7c;
    margin-bottom: 14px;
}

/* Services Grid Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 auto;
    max-width: 1100px;
}

.service-box {
    background: linear-gradient(90deg, #19b6a7 0%, #af2d7c 100%);
    color: #fff;
    font-size: 1.18rem;
    padding: 26px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(24,142,153,0.08);
}

.service-box:hover {
    background: linear-gradient(90deg, #af2d7c 0%, #19b6a7 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(175,45,124,0.14);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .services-list {
        flex-direction: column;
        align-items: center;
    }
    header, #services, #about, #contact, .hero {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
#about {
    background: #fff;
    padding: 56px 10vw;
    text-align: center;
}

#about, #about * {
    color: #188e99 !important;
}

#about h2 {
    color: #188e99;
    font-size: 2rem;
    margin-bottom: 18px;
}
#about img {
    max-width: 540px;
    width: 90%;
    border-radius: 14px;
    margin-bottom: 22px;
    box-shadow: 0 2px 18px rgba(24,142,153,0.07);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Section */
.partner-section {
    background: #f6f6f6;
    padding: 48px 0 32px 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
}

.partner-section h2 {
    color: #188e99;
    font-size: 2rem;
    margin-bottom: 22px;
    font-weight: 700;
}

.partner-logo {
    max-width: 260px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
    transition: transform 0.14s;
}

.partner-section a:hover .partner-logo {
    transform: scale(1.05);
}

.partner-section p {
    color: #188e99;
    font-size: 1.13rem;
    margin-top: 4px;
}

/* Contact Section */
#contact {
    background: #fff;
    padding: 56px 10vw;
}

#contact h2 {
    color: #188e99;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 32px;
}

form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

form label {
    text-align: left;
    color: #188e99;
    font-weight: 500;
}

input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #c5e3e8;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

button[type="submit"] {
    background: linear-gradient(90deg, #19b6a7 0%, #af2d7c 100%);
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #af2d7c 0%, #19b6a7 100%);
}

/* Footer Address-Phone */
.footer-contact-map {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #fff;
    padding: 40px 7vw 32px 7vw;
    gap: 48px;
    border-top: 1px solid #ececec;
}

.footer-office-title {
    color: #fff;
    font-weight: 600;
}

.footer-contact-left {
    flex: 1;
    min-width: 270px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.footer-logo-big {
    height: 60px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline-simple {
    font-size: 1.12rem;
    color: #233942;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-contact-row-simple {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.footer-headset-icon {
    height: 48px;
    width: 48px;
    min-width: 48px;
}

.footer-contact-details {
    text-align: left;
}

.footer-question {
    font-size: 1.05rem;
    color: #888;
    font-weight: 400;
}

.footer-phone {
    font-size: 1.55rem;
    font-weight: 700;
    color: #188e99;
    margin-top: 2px;
    letter-spacing: 1px;
}

.footer-address-simple {
    margin-top: 8px;
    font-size: 1rem;
    color: #233942;
    font-weight: 400;
    line-height: 1.5;
}

.footer-map-right {
    flex: 1.3;
    min-width: 270px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-map-right iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px;
}

@media (max-width: 950px) {
    .footer-contact-map {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }
    .footer-map-right, .footer-contact-left {
        max-width: 100%;
        min-width: unset;
        align-items: center;
    }
    .footer-contact-left {
        align-items: center;
        text-align: center;
    }
}

/* Presence in EU */
.presence-section {
    background: #fff;
    padding: 54px 7vw 36px 7vw;
}

.presence-section h2 {
    text-align: center;
    color: #188e99;
    font-size: 2.2rem;
    margin-bottom: 38px;
    font-weight: 700;
    letter-spacing: 1px;
}

.presence-grid,
.presence-grid.no-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 38px;
    justify-content: center;
    align-items: center;
    background: none;
}

.country-item {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #188e99;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0 20px 0 0;
    margin-bottom: 18px;
}

.flag {
    font-size: 2.1rem;
    margin-right: 10px;
}

.country-name {
    font-size: 1.25rem;
    color: #188e99;
    font-weight: 700;
}

/* Trustpilot Section */
.trustpilot-section {
    background: #fafafa;
    text-align: center;
    padding: 64px 0 64px 0;
}

.trustpilot-title {
    color: #188e99;
    font-size: 2.5rem;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(24,142,153,0.10);
    padding: 12px 28px;         /* reduced from 22px 44px */
    font-size: 1.1rem;
    font-weight: 600;
    color: #23272a;
    text-decoration: none;
    transition: box-shadow 0.18s, transform 0.14s, background 0.18s;
}

.trustpilot-link:hover,
.trustpilot-link:focus {
    box-shadow: 0 8px 32px rgba(24,142,153,0.18);
    transform: translateY(-2px) scale(1.04);
    background: #f1fafd;
    color: #188e99;
}

.trustpilot-star {
    height: 80px;
    width: 150px;
    display: inline-block;
    margin-right: 6px;
}

.trustpilot-text {
    font-size: 2.2rem;
    font-weight: 700;
}

.trustpilot-widget {
  margin: 30px auto 0 auto;
  max-width: 400px;
  min-width: 260px;
}

footer {
    background: #00A19A;
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    border-top: none;
}

/* SERVICE in page html */
.services-title-section {
    padding-top: 140px;
    text-align: center;
    background: #f6f6f6;
}

.services-title-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title-container h2 {
    color: #188e99;
    font-size: 2.3rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.services-title-container p {
    color: #233942;
    font-size: 1.23rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(24,142,153,0.08);
    padding: 56px 8vw 36px 8vw;
    margin: 70px auto 36px auto;
    max-width: 900px;
    text-align: center;
}

.service-detail-img {
    max-width: 340px;
    width: 100%;
    border-radius: 18px;
    margin-bottom: 22px;
    box-shadow: 0 2px 16px rgba(24,142,153,0.07);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-detail h1 {
    color: #188e99;
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.service-detail h3 {
    color: #233942;
    margin: 26px 0 8px 0;
}

.service-detail ul {
    text-align: left;
    max-width: 540px;
    margin: 0 auto;
    color: #233942;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-detail-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 10px;
}

.service-detail-content p {
    font-size: 1.19rem;
    color: #233942;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 0 0 0 16px;
    padding-left: 16px;
    color: #233942;
    font-size: 1.15rem;
    line-height: 1.8;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.main-section:nth-of-type(odd) {
    background: #fff;
}

.main-section:nth-of-type(even) {
    background: #f6f6f6;
}
