/*
Theme Name: STS Theme
Author: STS
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
}

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

.servizi {
    padding: 60px 20px;
}

.servizio {
    margin-bottom: 20px;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* SERVIZI */
.grid-servizi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.servizio-item {
    text-align: center;
}

.servizio-item img {
    max-width: 100%;
    height: auto;
}

/* CLIENTI */
.grid-clienti {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.cliente-item img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: 0.3s;
}

.cliente-item img:hover {
    filter: grayscale(0%);
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 70px;
    width: auto;
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    text-decoration: none;
    color: #1f2d3d;
    font-weight: 600;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    color: #d7194a;
}

.hero h1 {
    font-size: 42px;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.btn.primary {
    background: #d7194a;
    color: white;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.azienda-inner {
    display: flex;
    align-items: center;
}

.cta {
    background: #1e3a5f;
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero {
    background: #6f6f6f;
    color: #fff;
    padding: 110px 0 120px;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 320px;
}

.hero-text {
    max-width: 680px;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
}

.hero p {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: 0.25s ease;
}

.btn.primary {
    background: #e61e50;
    color: #fff;
}

.btn.primary:hover {
    background: #c91543;
}

.btn.secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #333;
}

.home-services {
    background: #f6f7fb;
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    color: #1f4696;
}

.section-subtitle {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.7;
    color: #68778f;
}

.section-note {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f4696;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(22, 35, 66, 0.06);
    overflow: hidden;
}

.service-card-link {
    display: block;
    padding: 32px;
    text-decoration: none;
    height: 100%;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    overflow: hidden;
}

.service-card-icon img {
    max-width: 36px;
    max-height: 36px;
    width: auto;
    height: auto;
    display: block;
}

.service-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.45;
    color: #1f4696;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #5e6d86;
}

.clienti {
    padding: 90px 0;
    background: #fff;
}

.clienti h2 {
    margin: 0 0 36px;
    text-align: center;
}

.grid-clienti {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    align-items: center;
}

.cliente-item {
    text-align: center;
}

.cliente-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.25s ease;
}

.cliente-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-clienti {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 90px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .services-grid,
    .grid-clienti {
        grid-template-columns: 1fr;
    }

    .service-card-link {
        padding: 24px;
    }
}
.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.service-card-icon i {
    font-size: 28px;
    color: #1f4696;
}
/* CARD BASE */
.service-card {
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(22, 35, 66, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* LINK */
.service-card-link {
    display: block;
    padding: 32px;
    text-decoration: none;
    height: 100%;
}

/* ICONA */
.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: all 0.3s ease;
}

/* ICONA FONT */
.service-card-icon i {
    font-size: 28px;
    color: #1f4696;
    transition: all 0.3s ease;
}

/* TITOLO */
.service-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    color: #1f4696;
    transition: all 0.3s ease;
}

/* TESTO */
.service-card p {
    margin: 0;
    color: #5e6d86;
}

/* 🔥 HOVER EFFECT */

/* al passaggio sulla card */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(22, 35, 66, 0.12);
}

/* cambia sfondo icona */
.service-card:hover .service-card-icon {
    background: #1f4696;
}

/* cambia colore icona */
.service-card:hover .service-card-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

/* cambia titolo */
.service-card:hover h3 {
    color: #e61e50;
}
.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta .btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
}
.page-hero {
    padding: 90px 0 70px;
    background: #f6f7fb;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    color: #1f4696;
}

.page-hero p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #68778f;
}

.services-archive {
    padding: 80px 0 100px;
    background: #fff;
}

.service-read-more {
    display: inline-block;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #e61e50;
}

.partner-tecnologici {
    padding: 90px 0;
    background: #f6f7fb;
    text-align: center;
}

.grid-partner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 36px;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.25s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1024px) {
    .grid-partner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-partner {
        grid-template-columns: repeat(2, 1fr);
    }
}
.clienti-archive {
    padding: 80px 0 100px;
    background: #fff;
}
.page-hero-contact {
    background: #f6f7fb;
    padding: 90px 0 70px;
    text-align: center;
}

.page-hero-contact h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    color: #1f4696;
}

.page-hero-contact p {
    max-width: 840px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #68778f;
}

.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2,
.contact-form-box h2 {
    margin: 0 0 16px;
    font-size: 34px;
    color: #1f4696;
}

.contact-info > p,
.contact-form-box > p {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.75;
    color: #5e6d86;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(22, 35, 66, 0.05);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 20px;
    color: #1f4696;
}

.contact-card-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #1f4696;
}

.contact-card-item p {
    margin: 0;
    color: #5e6d86;
    line-height: 1.7;
}

.contact-card-item a {
    color: #5e6d86;
    text-decoration: none;
}

.contact-card-item a:hover {
    color: #e61e50;
}

.contact-form-box {
    padding: 28px;
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    background: #f9fafc;
    box-shadow: 0 8px 20px rgba(22, 35, 66, 0.05);
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
    outline: none;
    border-color: #1f4696;
}

.contact-form-box input[type="submit"],
.contact-form-box button,
.contact-form-box .wpcf7-submit {
    background: #e61e50;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
    width: auto;
}

.contact-form-box input[type="submit"]:hover,
.contact-form-box button:hover,
.contact-form-box .wpcf7-submit:hover {
    background: #c91543;
}

.contact-map {
    padding: 0 0 90px;
    background: #fff;
}

.map-box {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(22, 35, 66, 0.08);
}

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

@media (max-width: 767px) {
    .page-hero-contact h1 {
        font-size: 36px;
    }

    .contact-info h2,
    .contact-form-box h2 {
        font-size: 28px;
    }

    .contact-card-item {
        padding: 18px;
    }
}
.page-hero-contact {
    background: #f6f7fb;
    padding: 90px 0 70px;
    text-align: center;
}

.page-hero-contact h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    color: #1f4696;
}

.page-hero-contact p {
    max-width: 840px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #68778f;
}

.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2,
.contact-form-box h2 {
    margin: 0 0 16px;
    font-size: 34px;
    color: #1f4696;
}

.contact-info > p,
.contact-form-box > p {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.75;
    color: #5e6d86;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(22, 35, 66, 0.05);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 20px;
    color: #1f4696;
}

.contact-card-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #1f4696;
}

.contact-card-item p {
    margin: 0;
    color: #5e6d86;
    line-height: 1.7;
}

.contact-card-item a {
    color: #5e6d86;
    text-decoration: none;
}

.contact-card-item a:hover {
    color: #e61e50;
}

.contact-form-box {
    padding: 28px;
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    background: #f9fafc;
    box-shadow: 0 8px 20px rgba(22, 35, 66, 0.05);
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
    outline: none;
    border-color: #1f4696;
}

.contact-form-box input[type="submit"],
.contact-form-box button,
.contact-form-box .wpcf7-submit {
    background: #e61e50;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
    width: auto;
}

.contact-form-box input[type="submit"]:hover,
.contact-form-box button:hover,
.contact-form-box .wpcf7-submit:hover {
    background: #c91543;
}

.contact-map {
    padding: 0 0 90px;
    background: #fff;
}

.map-box {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(22, 35, 66, 0.08);
}

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

@media (max-width: 767px) {
    .page-hero-contact h1 {
        font-size: 36px;
    }

    .contact-info h2,
    .contact-form-box h2 {
        font-size: 28px;
    }

    .contact-card-item {
        padding: 18px;
    }
}
.site-footer {
    background: #142746;
    color: #d8e0ec;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding: 70px 20px 40px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}
.page-hero-company {
    background: #f6f7fb;
    padding: 90px 0 70px;
    text-align: center;
}

.page-hero-company h1 {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.15;
    color: #1f4696;
}

.page-hero-company p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #68778f;
}

.company-section {
    padding: 90px 0;
    background: #fff;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 46px;
    align-items: center;
}

.company-image-wrap {
    position: relative;
}

.company-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(22, 35, 66, 0.12);
}

.company-image img {
    display: block;
    width: 100%;
    height: auto;
}

.company-badge {
    position: absolute;
    right: -20px;
    bottom: -20px;
    background: #1f4696;
    color: #fff;
    padding: 28px 34px;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(31, 70, 150, 0.28);
    text-align: center;
    min-width: 150px;
}

.company-badge strong {
    display: block;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
}

.company-badge span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.company-content h2 {
    margin: 0 0 22px;
    font-size: 52px;
    line-height: 1.08;
    color: #1f4696;
}

.company-content p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.85;
    color: #5e6d86;
}

.company-features {
    margin-top: 24px;
}

.company-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.company-feature-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f4696;
    font-size: 20px;
    margin-top: 2px;
}

.company-feature h3 {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.2;
    color: #1f4696;
}

.company-feature p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.company-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn.secondary.dark {
    border: 2px solid #1f4696;
    color: #1f4696;
    background: transparent;
}

.btn.secondary.dark:hover {
    background: #1f4696;
    color: #fff;
}

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

    .company-content h2 {
        font-size: 42px;
    }

    .company-badge {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .page-hero-company h1 {
        font-size: 36px;
    }

    .company-content h2 {
        font-size: 34px;
    }

    .company-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .company-feature h3 {
        font-size: 22px;
    }
}
.site-footer a {
    color: #d8e0ec;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
}
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (min-width: 768px) {

    .hero h1 {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-clienti {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-partner {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================
   RESPONSIVE DESKTOP
========================= */

@media (min-width: 1024px) {

    .hero h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-clienti {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-partner {
        grid-template-columns: repeat(5, 1fr);
    }
}
/* =========================
   MOBILE MENU
========================= */

/* HAMBURGER */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1f2d3d;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

/* ANIMAZIONE X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* NAV BASE */
.main-nav {
    position: relative;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 20px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .primary-menu {
        flex-direction: column;
        gap: 18px;
    }

    .primary-menu a {
        font-size: 18px;
        display: block;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #142746;
    color: #d8e0ec;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
}

.footer-col h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}

.footer-col p {
    margin: 0 0 12px;
    line-height: 1.7;
}

.site-footer a {
    color: #d8e0ec;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #b8c4d6;
}

/* tablet */
@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* desktop */
@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.3fr 1fr 1fr;
        align-items: start;
    }

    .footer-brand {
        grid-column: auto;
    }
}
@media (max-width: 767px) {
    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-top {
        padding: 40px 24px 24px;
        gap: 24px;
    }

    .footer-bottom {
        padding: 18px 24px 28px;
    }

    .footer-col p,
    .footer-col a,
    .footer-menu a {
        line-height: 1.7;
    }

    .footer-logo img {
        max-width: 140px;
    }
}
