body {
	font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
	margin: 0;
}

.feature-sections {
	padding: 60px 20px;
}

/* CARD */
.contact-card {
	background: var(--white);
	border-radius: 10px;
	padding: 40px;
	max-width: 1200px;
	margin: auto;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.contact-header h1 {
	margin: 0;
	font-size: 36px;
	color: var(--text-dark);
}

.contact-header p {
	color: #6c7a89;
	margin-top: 10px;
}

/* ALERT */
.alert-student {
	background: #0075bc;
	color: #fff;
	padding: 18px 21px;
	margin-top: 20px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.6;
	max-width: 716px;
}

.alert-student a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}

/* GRID */
.contact-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

/* FORM */
.contact-form-box {
	background: #fafafa;
	padding: 30px;
	border-radius: 8px;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 18px;
}

.form-group label {
	font-size: 15px;
	color: #444444;
	margin-bottom: 6px;
	font-weight: 600;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

/* INPUTS */
.custom-dropdown,
.subtle-dropdown {
	padding: 12px 44px 12px 14px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='18' viewBox='0 0 20 20' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 14px;
}

input,
select,
textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #dcdfe4;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	transition: 0.25s;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: #2e8df6;
	box-shadow: 0 0 0 3px rgba(46, 141, 246, 0.15);
}

/* RADIO */
.radio-group {
	display: flex;
	gap: 20px;
}

/* INTEREST SECTION */
.interest-section {
	display: flex;
	gap: 30px;
	margin-top: 25px;
}

.interest-title h4 {
	color: #444444;
	font-size: 16px;
	margin: 0;
}

.interest-title p {
	font-size: 13px;
	color: #6c7a89;
}

.interest-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 22px;
    align-items: start;
}

.interest-options label {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    column-gap: 14px;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.5;
    cursor: pointer;
}

.other-option {
	grid-column: span 2;
	display: flex;
	align-items: center;
	gap: 10px;
}

.other-option input {
	flex: 1;
}

/* BUTTON */
.submit-btn {
	display: block;
	width: fit-content;
	margin-left: auto;
	background: #0075bc;
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 14px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: 0.2s;
}

.submit-btn:hover {
	background: rgb(0, 127, 188);
}

/* RIGHT INFO */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-card {
	background: #fff;
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
	margin: 0 0 10px;
	color: rgb(0, 127, 188);
}

.info-card p {
	font-size: 14px;
	color: #5a6a78;
	line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	.contact-card {
		padding: 30px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 900px) {
	.form-row {
		grid-template-columns: 1fr;
	}

	.interest-section {
		flex-direction: column;
		gap: 14px;
	}
}

@media (max-width: 768px) {
	.feature-sections {
		padding: 30px 14px;
	}

	.contact-card {
		padding: 22px 16px;
		border-radius: 8px;
	}

	.contact-header h1 {
		font-size: 28px;
		line-height: 1.25;
	}

	.alert-student {
		max-width: 100%;
		padding: 14px 16px;
	}

	.contact-form-box {
		padding: 18px 14px;
	}

	.radio-group {
		flex-wrap: wrap;
		gap: 12px;
	}

	.interest-options {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.other-option {
		grid-column: span 1;
		flex-direction: column;
		align-items: stretch;
	}

	.submit-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 14px;
	}

	.contact-header h1 {
		font-size: 24px;
	}

	input,
	select,
	textarea,
	.custom-dropdown,
	.subtle-dropdown {
		font-size: 16px;
	}
}

		