.page {
	overflow-x: clip;
}

.promotion-page {
  	width: 100%;
	font-family: "Roboto", sans-serif;
}

.headline {
	font-weight: 700;
}

.section-1 {
	margin: 0;
    margin-left: 10px;
    margin-right: 10px;
	padding: 0px 60px 40px 60px;
}

.section-1 .line {
    display: flex;
    justify-content: space-between;
    align-items: top;
	margin-bottom: 20px;
}

.section-1 .left{
	width: 40%;
}

.section-1 .right{
	width: 50%;
	margin-left: 20px;
	margin-right: auto;
}

.section-1 .right a{
	background-color: #be9660;
  	color: white;
  	padding: 12px 24px;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
	border: 2px solid #be9660;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-1 .right a:hover{
	background-color: #fff;
	color: #be9660;
	font-weight: 700;
}

.section-1 .left{
	margin-right: 10px;

}

.section-1 img{
    border-collapse: collapse;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/*--------------------------------------*/

@media (max-width: 480px) {
	.section-1 {
		padding: 0;
	}
	
	.section-1 .line {
    	display: block;
	}
	
	.section-1 .left {
		width: 100%;
		margin: 0;
	}
	
	.section-1 .right {
		width: 100%;
		margin: 0;
		margin-top: 20px;
	}

}