.container {
    display: flex;
    max-width: 1200px;
    gap: 40px;
    width: calc(100% - 40px);
    margin-bottom: 20px;
}

/* LEFT SIDE (IMAGE) */
.left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left img {
    width: 100%;
	max-width: 300px;
	aspect-ratio: 1;
	object-position: top;
	object-fit: cover;
	border-radius: 50%;
}

/* RIGHT SIDE (TEXT + FORM) */
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #1a1a1a;
    margin: 0 auto 20px auto;
}

.description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 0;
	font-weight: 300;
	text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

label {
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    width: 100%;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: system-ui;
    resize: vertical;
    height: 40px;
    padding: 0;
    text-indent: 10px;
}

textarea {
    padding-top: 10px;
    height: auto;
}

button {
    background-color: var(--main-accent-color);
    color: black;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

button:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
	    gap: 20px;
    }
    .title {
        font-size: 27px;
        font-weight: 600;
    }
    .left img {
		max-height: 190px;
		width: unset;
    }
    .description {
        font-size: 16px;
        font-weight: 300;
        text-align: left;
        margin-top: 0;
    }

    .container {
        margin-bottom: 80px;
    }

}