.leftLink h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
}

.leftLink h2::after {
    content: '';
    flex: 1;
    height: 3px;
    background: #00abe2;
    margin-top: 10px;
}

.leftLink-text h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.leftLink-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.leftLink-image {
    width: 60%;
    height: auto;
}

.leftLink-text {
    width: 50%;
}

.leftLink-image img {
    width: auto;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    aspect-ratio: 16 / 10;
}

.leftLink-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0095c7;
    padding-bottom: 20px;
}

.leftLink-text p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.leftLink-text ul {
    list-style: disc;
    margin-bottom: 30px;
    padding-left: 25px;
}

.leftLink-text ul li {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.leftLink-text ul li::marker {
    color: #00abe2;
    font-size: 1.3em;
}

.leftLink-text a {
    background-color: #00abe2;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.leftLink-text a:hover {
    background-color: #008fb2;
    box-shadow: 0 12px 30px rgba(25, 145, 230, 0.4);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.rightLink h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
}

.rightLink h2::before {
    content: '';
    flex: 1;
    height: 3px;
    background: #00abe2;
    margin-top: 10px;
}

.rightLink-text h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.rightLink-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.rightLink-image {
    width: 60%;
    height: auto;
}

.rightLink-text {
    width: 50%;
}

.rightLink-image img {
    width: auto;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    aspect-ratio: 16 / 10;
}

.rightLink-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0095c7;
    padding-bottom: 20px;
}

.rightLink-text p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.rightLink-text ul {
    list-style: disc;
    margin-bottom: 30px;
    padding-left: 25px;
}

.rightLink-text ul li {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rightLink-text ul li::marker {
    color: #00abe2;
    font-size: 1.3em;
}

.rightLink-text a {
    background-color: #00abe2;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.rightLink-text a:hover {
    background-color: #008fb2;
    box-shadow: 0 12px 30px rgba(25, 145, 230, 0.4);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {

    .leftLink-content,
    .rightLink-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .leftLink-image,
    .rightLink-image {
        order: 1;
        width: 100%;
    }

    .leftLink-text,
    .rightLink-text {
        order: 2;
        width: 100%;
    }

    .leftLink h2,
    .rightLink h2 {
        justify-content: flex-start;
        margin-bottom: 15px;
        line-height: 1.2;
        font-size: 2.5rem;
    }

    .leftLink h2::after,
    .rightLink h2::before {
        display: none;
    }

    .leftLink-image img,
    .rightLink-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }

    .leftLink-text h3,
    .rightLink-text h3 {
        line-height: 1.2;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .leftLink-text p,
    .rightLink-text p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .leftLink-text a,
    .rightLink-text a {
        font-size: 0.9rem;
        padding: 15px 30px;
    }
}

#wifi-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wifi-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0095c7;
    padding-bottom: 20px;
}

#wifi-cta a {
    background-color: #00abe2;
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

#wifi-cta a:hover {
    background-color: #008fb2;
    box-shadow: 0 12px 30px rgba(25, 145, 230, 0.4);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    #wifi-cta h2 {
        font-size: 2.5rem !important;
    }

    section {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    #wifi-cta {
        margin-top: 120px !important;
        margin-top: 120px !important;
    }

    .leftSection,
    .rightSection {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .leftSection h2,
    .rightSection h2 {
        margin-bottom: 20px !important;
        padding-top: 20px !important;
    }
}