/* Container */
.container {
    max-width: 1271px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #5c6a8b;
    padding: 15px 0;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: block;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(40deg) translateY(12px)
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-50deg) translateY(-10px);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-nav ul,
.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: #FFF;
    text-decoration: none;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition: opacity 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    opacity: 0.8;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EF3E3E;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after,
.main-nav .active a::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.header-cta-mobile {
    display: none;
}

.btn-acquista {
    display: inline-flex;
    background: #FFF;
    color: #05214E;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-family: "Open Sans";
    font-size: 20px;
    line-height: 140%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Menu mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #5c6a8b;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul,
    .main-nav .nav-menu {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        font-size: 18px;
        display: block;
        padding: 12px 0;
    }
    
    /* Mostra CTA mobile dentro il menu */
    .header-cta-mobile {
        display: block;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header-cta-mobile .btn-acquista {
        width: 100%;
        justify-content: center;
        text-align: center;
        color: #5c6a8b;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
        width: 68%;
    }
    
    .main-nav {
        width: 280px;
        padding: 80px 30px 30px;
    }
}

/* Hero Section */
.hero-section {
    background: #5c6a8b;
    color: #FFF;
    padding: 100px 0 200px 0;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    color: #FFF;
    text-align: center;
    font-family: "Abhaya Libre";
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 32px;
}

.hero-content p {
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 64px;
}

/* Hero Illustrations */
.hero-illustration {
    position: absolute;
    width: 380px;
    z-index: 1;
}

.hero-left {
    left: -50px;
    bottom: -208px;
}

.hero-right {
    right: -50px;
    bottom: -260px;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-illustration {
        width: 280px;
    }
    
    .hero-left {
        left: -20px;
    }
    
    .hero-right {
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .hero-illustration {
        max-width: 120%;
    }

    .hero-right {
        bottom: -240px;
    }

    .hero-content h1 {
        font-size: 110px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 100px;
    }
}

@media (max-width: 540px) {
    .hero-content h1 {
        font-size: 66px;
    }

    .hero-illustration {
        display: none;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 60px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    background: #EF3E3E;
    color: #FFF;
    padding: 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 100%;
    font-style: normal;
}

.btn-primary:hover {
    background: #EF3E3E;
}

.btn-secondary {
    display: inline-block;
    color: #5c6a8b;
    padding: 10px 30px;
    border: 2px solid #5c6a8b;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5c6a8b;
    color: #FFF;
}

@media (max-width: 540px) {
    .btn-primary {
        font-size: 18px;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
}

.section-title {
    border-radius: 100px 100px 30px 30px;
    background: #FFF;
    margin-top: -130px;
    align-items: center;
    justify-content: center;
    padding: 90px;
    position: relative;
    z-index: 10;
}

.solutions-section h2 {
    color: #2E2E2E;
    text-align: center;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.solution-item:nth-child(even) {
    flex-direction: row-reverse;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    max-width: 80%;
    height: auto;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 24px;
}

.solution-content p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 32px;
}

/* Button Solution */
.btn-solution {
    display: inline-flex;
    padding: 12px 32px;
    background: #e1ecf6;
    color: #2E2E2E;
    border-radius: 100px;
    text-decoration: none;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-style: normal;
    line-height: 140%;
}

.btn-solution:hover {
    background: #2E2E2E;
    color: #FFF;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .solution-item {
        gap: 40px;
    }
    
    .solution-image {
        flex: 1;
    }

    .solution-image img {
        max-width: 70%;
        transform: translateX(22%);
    }
}

@media (max-width: 540px) {
    .section-title {
        padding: 35px;
    }

    .solution-content h3 {
        font-size: 26px;
    }

    .solution-content p {
        font-size: 16px;
    }

    .solutions-section h2 {
        font-size: 36px;
    }

    .solution-item {
        gap: 0;
    }

    .btn-solution {
        padding: 12px 24px;
        font-size: 16px;
    }

    .solution-image img {
        max-width: 100%;
        transform: translateX(0%);
    }
}

@media (max-width: 375px) {
    .section-title {
        padding: 60px;
    }

    .solutions-section h2 {
        font-size: 42px;
    }

    .solution-content h3 {
        font-size: 22px;
    }

    .solution-content p {
        font-size: 12px;
    }

    .btn-solution {
        font-size: 12px;
    }
}

/* Features Section */
.features-section {
    padding: 120px 0 239px 0;
    background: #FAFAFA;
}

.features-title {
    background: #FAFAFA;
}

.features-section h2 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.features-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.features-item:nth-child(even) {
    flex-direction: row-reverse;
}

.features-image {
    flex: 1;
}

.features-image img {
    max-width: 80%;
    height: auto;
}

.features-content {
    flex: 1;
}

.features-content h3 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 24px;
}

.features-content p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 0 20px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-card h3 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-section h2 {
        font-size: 60px;
    }
}

@media (max-width: 540px) {
    .features-section h2 {
        font-size: 56px;
    }
}

@media (max-width: 375px) {
    .features-section h2 {
        font-size: 48px;
    }
}

/* App Section */
.app-section {
    background: #5c6a8b;
    position: relative;
    overflow: visible;
    height: 625px;
    display: flex;
    align-items: center;
}

.app-item {
    display: flex;
    align-items: center;
}

.app-image {
    flex: 0 0 45%;
    position: relative;
}

.app-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    transform: translateX(-10%);
}

.app-content {
    flex: 1;
}

.app-content h3 {
    color: #FFF;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 24px;
}

.app-content p {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 32px;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-app {
    display: inline-flex;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
    line-height: 100%;
}

.btn-app.apple {
    background: #EF3E3E;
    color: #FFF;
}

.btn-app.google {
    background: #8B5FBF;
    color: #FFF;
}

.btn-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-app.apple:hover {
    background: #D63535;
}

.btn-app.google:hover {
    background: #7549A8;
}

/* Responsive */
@media (max-width: 1024px) {
    .app-section {
        height: 550px;
    }
    
    .app-item {
        gap: none;
    }
    
    .app-image {
        flex: 1;
    }
    
    .app-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .app-section {
        height: 415px;
    }

    .app-content h3 {
        font-size: 48px;
    }

    .app-content p {
        font-size: 14px;
    }

    .btn-app {
        padding: 14px 14px;
    }
}

@media (max-width: 540px) {
    .app-image img {
        transform: translateX(0);
    }

    .app-content h3 {
        font-size: 35px;
    }

    .app-content p {
        font-size: 12px;
    }

    .btn-app {
        padding: 2px 5px;
        font-size: 12px;
        font-weight: 500;
        gap: 2px;

    }

    .app-buttons {
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .app-image img {
        transform: translateX(-20%);
    }

    .app-image img {
        max-width: 140%;
    }

    .app-content h3 {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .app-content p {
        margin-bottom: 14px;
    }

}

/* Vantaggi Section */
.vantaggi-section {
    padding: 120px 0;
    background: #FAFAFA;
}

.vantaggi-title {
    margin-bottom: 80px;
}

.vantaggi-title h2 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
}

/* Vantaggi Grid */
.vantaggi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Vantaggio Card */
.vantaggio-card {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vantaggio-card.featured {
    background: linear-gradient(135deg, #E8DFF5 0%, #D4C5E8 100%);
}

.vantaggio-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vantaggio-icon img {
    width: 200%;
    height: auto;
}

.vantaggio-card h3 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.vantaggio-card p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

/* Vantaggi Footer */
.vantaggi-footer {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.vantaggi-footer p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
}

/* Responsive */
@media (max-width: 1024px) {
    .vantaggi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vantaggio-card {
        padding: 40px 30px;
    }
}

@media (max-width: 540px) {
    .vantaggi-title h2 {
        font-size: 45px;
    }
}

@media (max-width: 375px) {
    .vantaggi-title h2 {
        font-size: 32px;
    }
}

/* Realizzazioni Section */
.realizzazioni-section {
    padding: 120px 0;
    background: white;
}

.realizzazioni-title {
    margin-bottom: 80px;
}

.realizzazioni-title h2 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

.carousel-slide {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    max-width: 350px;
}

/* Realizzazione Card */
.realizzazione-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realizzazione-image {
    width: 110%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.realizzazione-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.realizzazione-content {
    padding: 32px 24px;
}

.realizzazione-content h3 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 16px;
}

.realizzazione-content p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 24px;
}

/* Button Realizzazione */
.btn-realizzazione {
    display: inline-flex;
    padding: 12px 32px;
    background: #e1ecf6;
    color: #2E2E2E;
    border-radius: 100px;
    text-decoration: none;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-realizzazione:hover {
    background: #2E2E2E;
    color: white;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #2E2E2E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #2E2E2E;
    color: white;
    border-color: #2E2E2E;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 540px) {
    .realizzazioni-title h2 {
        font-size: 45px;
    }

    .realizzazione-content h3 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .realizzazione-image img{
        width: 65%;
        height: 110%;
    }
}

@media (max-width: 375px) {
    .realizzazioni-title h2 {
        font-size: 36px;
    }

    .realizzazione-image img {
        width: 58%;
        height: 105%;
    }

    .realizzazione-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
}

/* Contatti Section */
.contatti-section {
    padding: 120px 0;
    background: #FAFAFA;
}

.contatti-header {
    max-width: 800px;
    margin-bottom: 40px;
}

.contatti-header h2 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 24px;
}

.contatti-header p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-align: left;
}

/* Contact Form */
.contact-form-wrapper {
    margin: 0 auto;
}

.contact-form {
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #636363;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border-radius: 8px;
    font-family: "Open Sans";
    font-size: 16px;
    background: #FFF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #FFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #636363;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    padding: 12px 24px;
    background: #EF3E3E;
    color: #FFF;
    border: none;
    border-radius: 100px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 50px;
}

.btn-submit:hover {
    background: #D63535;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 62, 62, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contatti-header h2 {
        font-size: 48px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Footer */
.site-footer {
    background: #5c6a8b;
    color: white;
    padding: 40px 0 40px 0;
    position: relative;
}

.site-footer .container {
    max-width: 1271px;
}

/* Footer Top */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    text-align: center;
}

.footer-logo-bg {
    display: inline-block;
    background-color: #5c6a8b;
    border-radius: 50%;
    padding: 10px;  /* Controlla la dimensione del background */
    margin-top: -100px;
}

.footer-logo img {
    width: 70px;  /* Controlla SOLO la dimensione del logo */
    height: 70px;
    display: block;
    object-fit: contain;
}

.footer-tagline {
    color: white;
    font-family: "Open Sans";
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.footer-info {
    text-align: center;
}

.footer-info h3 {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 5px;
}

.footer-info p {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: white;
    color: #5c6a8b;
    transform: translateY(-3px);
}

/* Footer Menu */
.footer-menu {
    width: 100%;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: white;
    font-family: "Open Sans";
    font-size: 16px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px 0;
    }
    
    .footer-top {
        padding-bottom: 40px;
    }
    
    .footer-logo img {
        height: 80px;
        width: auto;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

