.short-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 100px;
}

.short-hero-header {
    font-size: 26px;
    text-align: center;
    width: 50%;
}

.short-hero-header h1 {
    margin-top: 0;
}

.short-hero-header h3 {
    font-size: 30px;
    margin-top: 0;
    text-align: center;
}

.short-hero .sticky-note {
    display: flex;
    flex-direction: column;
    padding: 18px;
    padding-right: 0;
    margin: 0 140px;
    box-shadow: 2px 2px 10px rgba(84, 84, 84, 0.1);
    border-radius: 20px;
    max-width: 220px;
}

.short-hero .sticky-note h4 {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 24px;
}

.short-hero .sticky-note p {
    max-width: 90%;
}

.short-hero .sticky-note svg {
    align-self: flex-end;
    background-color: white;
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
}



.gradient-background {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-gradient {
    background: radial-gradient(circle at bottom left, rgba(4, 183, 148, 0.5) 0%, rgba(218, 245, 240, 0) 75%);
    border-radius: 0 100% 0 0;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 460 / 400;
}

.left-gradient .sticky-note {
    margin-left: 20px;
    min-width: 150px;
}

.right-gradient .sticky-note {
    min-width: 150px;
    margin-right: 20px;
}

.right-gradient {
    background: radial-gradient(circle at bottom right, rgba(30, 168, 209, 0.5) 0%, rgba(30, 168, 209, 0) 75%);
    border-radius: 100% 0 0 0;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 560 / 500;
    margin-left: auto; /* This pushes the element to the right */
}

@media(max-width: 1700px) {
    .short-hero-header h3 {
        font-size: 24px;
    }

    .short-hero-header h1 {
        font-size: 70px;
        margin-bottom: 15px;
    }
}

@media (max-width: 1440px) {

    .short-hero-header {
        margin-bottom : 20px;
    }
    .short-hero-header h3 {
        font-size: 16px;
    }

    .short-hero-header h1 {
        font-size: 70px;
        margin-bottom: 20px;
    }

    .short-hero .sticky-note h4 {
        margin-bottom: 0;
        font-size: 20px;
    }
    
    .short-hero .sticky-note p {
        max-width: 90%;
        font-size: 14px;
    }

}
@media (max-width: 1024px) {
    .short-hero {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 70px;
    }

    .short-hero-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 26px;
        text-align: center;
        width: 100%;
        order: -1; /* Ensures the header always comes first */
    }

    .short-hero-header h3 {
        width: 80%;
    }

    .gradient-background {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        background: none;
    }

    .left-gradient,
    .right-gradient {
        background: none;
        max-width: 100%;
        border-radius: 0;
        margin: 0;
        width: auto;
    }

    .short-hero .sticky-note {
        display: flex;
        margin: 0;
        max-width: 200px; /* Maintain max-width from larger screens */
    }
    .short-hero .sticky-note h4 {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .gradient-background {
        padding: 1rem;
    }

    .short-hero {
        gap: 10px;
    }
    .short-hero-header {
        font-size: 30px;
        width: 80%;
    }

    .short-hero-header h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    

    .short-hero-header h3 {
        font-size: 14px;
        width: 100%;
    }

    .short-hero .sticky-note {
        max-width: 200px;
    }
  
	.short-hero .sticky-note h4 {
		margin-top: 0;
	}
    
    .gradient-background {
        padding: 0;
    }
}


