.attribution-section {
    padding: 60px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.attribution-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.attribution-content {
margin-bottom:70px;
    flex: 1;
}

.hero-attribution-heading {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 64px;
}

.attribution-subtext {
    margin-bottom: 10px;
}

.attribution-highlight {
    color: #1db954; /* green highlight color */
    font-weight: 600;
}

.attribution-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.6;
}

.attribution-hero .attribution-button {
    display: inline-block;
    font-family: 'euclidcircularb-semibold', Helvetica, Arial, sans-serif;
    background: #1db954; 
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.attribution-button:hover {
    background: #17a74a;
    color: #fff;
}

.attribution-image-wrapper {
    flex: 1;
    text-align: center;
}

.attribution-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ========================
   RESPONSIVE STYLES
   ======================== */

@media only screen and (max-width: 1440px){
    .hero-attribution-heading{
        font-size: 35px;
    }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .hero-attribution-heading {
        line-height: 52px;
    }
    .attribution-container {
        gap: 30px;
    }
.attribution-content{
    margin-bottom:20px;
}
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .attribution-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-attribution-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .attribution-description {
        margin-left: auto;
        margin-right: auto;
    }

    .attribution-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .attribution-image-wrapper {
        order: -1; /* show image first on mobile if you prefer */
    }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-attribution-heading {
        line-height: 36px;
    }

    .attribution-description {
        font-size: 0.9rem;
    }

    .attribution-button {
        padding: 12px;
        font-size: 0.9rem;
    }
}
@media (min-width: 958px){
    .attribution-container{
        padding: 0px 20px;
    }
}