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

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
    flex-direction: column;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.logo-container {
    text-align: center;
    cursor: pointer;
    margin-top: -2px;
}

.logo-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.buttons {
    margin-top: -4px;
    text-align: center;
    border-radius: 30px;
}

.blob-btn {
    position: relative;
    padding: 15px 25px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: none;
    color: #81be1f;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
}

.blob-btn img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.blob-btn::before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #81be1f;
    border-radius: 30px;
}

.blob-btn::after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn:hover {
    color: #FFFFFF;
    border-radius: 30px;
}

.blob-btn:hover::after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
    background: #81be1f;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #81be1f;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.4);
    transition: transform 0.45s;
}

.blob-btn__blob:nth-child(1) {
    left: 0;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 25%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 50%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 75%;
    transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translate3d(0, 0, 0) scale(1.4);
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.country {
    margin-bottom: 30px;
    text-align: left;
}

.country h2 {
    margin: 0;
    background: linear-gradient(to right, #81be1f, #4caf50);
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

.country h2 img {
    margin-right: 10px;
    height: 24px;
}

.country-service {
    margin-bottom: 30px;
    text-align: left;
}

.country-service h2 {
    margin: 0;
    /* background: linear-gradient(to right, #4DADA8, #2481BC); */
    background: linear-gradient(to right, #4EAE51, #2481BC);

    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

.country-service h2 img {
    margin-right: 10px;
    height: 24px;
}

.poland-gradient h2 {
    background: linear-gradient(to right, #e7ca2e, #da7408);
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.table th,
.table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.table th {
    background-color: #f1f1f1;
    color: #333;
}

.table td {
    background-color: #fff;
    color: #555;
}

.table .service {
    width: 300px;
}

.table .common-width {
    width: 60px;
}

.table .prep-time {
    width: 115px;
}

.table .total-cost {
    width: 75px;
}

.cost {
    color: #007BFF;
    font-weight: bold;
}

.footer-buttons {
    margin-top: 40px;
    text-align: center;
}

.footer-buttons .blob-btn {
    display: inline-block;
    color: #fff;
    /* background-color: #81BE1F ; */
    background-color: #4DAF50;
    border: none;
    text-decoration: none;
}

.footer-buttons .blob-btn::before {
    border: none;
}

.footer-buttons .blob-btn:hover {
    background-color: #316e33;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 10px;
    }

    .table th,
    .table td {
        padding: 8px;
        font-size: 14px;
    }

    .table .service {
        width: auto;
    }

    .table .common-width,
    .table .prep-time,
    .table .total-cost {
        width: auto;
        text-align: center;
    }

    .country h2 {
        font-size: 16px;
        padding: 8px;
    }

    .country-service h2 {
        font-size: 16px;
        padding: 8px;
    }

    h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blob-btn {
        padding: 10px;
        font-size: 14px;
    }

    .blob-btn img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
        top: -2px;
    }

    .blob-btn span {
        display: none;
    }

    .blob-btn::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        color: #81be1f;
        font-weight: bold;
    }
}

.new-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    font-size: 17px;
    font-weight: 400;
    color: #52b14b;
    text-decoration: none;
    border-radius: 12px;
    padding: 4px 12px;
    margin: 0 0 0 auto;
    transition: background-color 0.2s linear;
}

.new-link svg {
    width: 18px;
    height: 18px;
}

.new-link:hover {
    background-color: #f1f1f1;
}