:root {
    --color-primary: #ff6600;
    --color-secondary: #ff8533;
    --color-tertiary: #ffa64d;
    --orange-lightest: #fff9f4;
    --orange-lighter: #ffebe0;
    --orange-light: #ffd9bf;
    --orange-medium-light: #ffc299;


    --text-color-dark: #333;
    --h2-border-bottom: var(--color-primary);
    --shadow-light: rgba(255, 102, 0, 0.08);
    --shadow-medium: rgba(255, 102, 0, 0.15);
    --shadow-strong: rgba(255, 102, 0, 0.25);
}



.telecom-banner {
    background: linear-gradient(to right, #0093D1, var(--color-primary));
    color: #fff;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    padding: 50px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 95%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;

    position: relative;
}

.telecom-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.telecom-banner:hover::before {
    opacity: 1;
}

.telecom-banner:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.banner-content {
    max-width: 800px;
    z-index: 1;
}

.telecom-banner h2 {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.35);
    line-height: 1.2;
    letter-spacing: -1
}

.telecom-banner p {
    font-size: 1.35em;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 300;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.partner-logos .logo {
    width: 55px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.partner-logos .logo:hover {
    transform: scale(1.1);
}

.banner-button {
    display: inline-block;
    background-color: #fff;
    color: var(--color-primary);
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.5px;
}

.banner-button:hover {
    background-color: #0093D1;
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .telecom-banner {
        padding: 40px 20px;
        margin: 40px auto;
    }

    .telecom-banner h2 {
        font-size: 2.8em;
    }

    .telecom-banner p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .partner-logos {
        gap: 20px;
        margin-bottom: 35px;
    }

    .partner-logos .logo {
        width: 50px;
    }

    .banner-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .telecom-banner {
        padding: 30px 15px;
        margin: 30px auto;
        border-radius: 10px;
    }

    .telecom-banner h2 {
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .telecom-banner p {
        font-size: 1.05em;
        margin-bottom: 25px;
    }

    .partner-logos {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .partner-logos .logo {
        width: 45px;
    }

    .banner-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}