/* Reset & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font Styles */
body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Logo */
header {
    text-align: left;
    margin-bottom: 20px;
}

.logo {
    width: 200px;
}

/* Content Layout */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

@media (min-height: 800px) {
	.content {
		margin-top: 200px;
	}
}

.text {
    max-width: 600px;
    text-align: left;
}

h1 {
    font-size: 3.0em;
    font-weight: 900;
    margin-bottom: 30px;
	color: #000;
}

p {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 500;
	color: #707070;
}

/* Button Styles */
.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    text-decoration: none;
    padding: 15px 40px;
    background: linear-gradient(90deg, #eaa42b, #eaa42b); /* Gradient background */
    color: white;
    border-radius: 30px; /* Rounded button */
    font-weight: 700;
    font-size: 1em;
    position: relative; /* To position arrow */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(234, 164, 43, 0.5); /* Yellow shadow */
}

.btn::after {
    content: '  \276F'; /* Arrow symbol */
    font-size: 1.2em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: all 0.3s ease;
	font-family: arial;
}

.btn:hover {
    background: linear-gradient(90deg, #eaa42b, #eaa42b); /* Keep gradient on hover */
    box-shadow: 0 6px 15px rgba(234, 164, 43, 0.7); /* Stronger yellow shadow on hover */
}

.btn:hover::after {
    right: 15px; /* Move the arrow slightly on hover */
}


	.inquiry-btn {
	text-decoration: none;
	color: #707070;
	font-weight: bold;
}

.inquiry-btn span {
	color: #eaa42b;
}

/* Image Section */
.image {
    text-align: right;
}

.image img {
    max-width: 100%;
    max-height: 550px;
    height: auto;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text {
        text-align: center;
        margin-bottom: 30px;
    }

    .image {
        text-align: center;
    }
	.buttons {
		display: grid;
	}
}

/* Responsive Layout */
@media (max-width: 756px) {
	body {
		background-image: url('forcamix-bg-sm-top.png');
		background-size: 180px;
		background-repeat: no-repeat;
		background-position: right 0 top;
	}
	.container {
		background-image: url('forcamix-bg-sm-bottom.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left 0 bottom;
	}
	h1 {
		font-size: 2.5em;
	}

	p {
		font-size: 1.4em;
		line-height: 1.3;
	}
}
/* Responsive Layout */
@media (min-width: 757px) {
	body {
		background-image: url('forcamix-bg.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right -180px top;
	}
	p {
		text-align: justify;
	}
}
@media (min-width: 1300px) {
	.logo {
		position: absolute;
		left: 50px;
	}
	body {
		background-position: right -250px top;
	}
	.logo {
		width: 300px;
	}

}
@media (min-width: 1500px) {
	body {
		background-image: url('forcamix-bg.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right 0 top;
	}

}