.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    gap: 1.5rem;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-header .logo {
    width: 100px;
}

.hero-header .tagline {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
}

.hero-header .tagline span {
    display: inline-block;
    margin: 0 0.2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding-bottom: 3.5rem;
    line-height: 4rem;
}

.hero-content .description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 2rem auto;
    line-height: 1.6;
    text-align: center;
}



.btn--primary:hover {
    background-color: #444;
}

.hero-image {
    width: 100%;
    max-width: 950px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;

}


.bulletpoints-pos {
	margin-top: 1rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px
}


@media screen and (max-width: 430px) {
	.bulletpoints-pos {
		display: flex;
		flex-direction: column;
		margin-top: 0;
		align-items: center;
	}
}



@media screen and (max-width: 430px) {
    .hero-image {
        width: 400px;
    }
}