@font-face {
  font-family: 'AvantGarde';
  src: url('../AvantGarde/AvantGarde.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


body {
    font-family: 'AvantGarde', sans-serif;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #333;
}

.btn-div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn {
    background-color: #ff914d;
    border: none;
    border-radius: 40px;
    padding: 10px 40px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    width: 200px;
    cursor: pointer;
}

.container {
	max-width: 80%;
	margin: 0 auto;
	padding: 40px 20px;
}

.logo {
	color: #ff914d;
	margin: 0;
	font-size: 24px;
	font-weight: bold;
}

.tagline {
	font-size: 12px;
	color: #999;
}

.intro h2,
.steps h3,
.form-section h3 {
	margin-inline: auto;
	text-align: center;
	color: #ff914d;
	font: 700px;
	font-size: 32px;
	margin-block: 35px;
}

.intro p {
	text-align: center;
	font-size: 20px;
	font: 400px;
	line-height: 1.6;
}

.steps ol {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.steps li {
	background: white;
	color: black;
	padding: 10px 15px;
	border-radius: 25px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 40px;
	font-weight: 400;
	font-size: 18px;
}

.steps li::before {
	content: counter(item);
	counter-increment: item;
	background: #ff914d;
	color: white;
	border-radius: 50%;
	position: absolute;
	left: -10px;
	top: 3px;
	width: 33px;
	height: 33px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 24px;
	font-weight: 700;
	font-size: 20px;
}

.steps ol {
	counter-reset: item;
}

.note {
	font-size: 20px;
	font-weight: 400;
	margin-top: 10px;
	line-height: 1.5;
}

.form-section {
	margin-top: 40px;
}

.form-group {
	border: 2px solid #ff914d;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 400;
	font-size: 22px;
	margin-bottom: 10px;
}

.form-group input {
	width: 70%;
	padding: 10px;
	font-size: 14px;
	border: none;
	border-bottom: solid black 1px;
	outline: none;
}
.tel{
    width:100%;
}
input {
	width: 70%;
	padding: 10px;
	font-size: 14px;
	border: none;
	border-bottom: solid black 1px;
	outline: none;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
}

.radio-option {
	position: relative;
	padding-left: 30px;
	font-size: 18px;
	font-weight: 300;
	cursor: pointer;
	user-select: none;
}

.radio-option input[type='radio'] {
	position: absolute;
	/* opacity: 0; */
	visibility: hidden;
	cursor: pointer;
}

.radio-option::before {
	content: '';
	position: absolute;
	left: -15px;
	width: 30px;
	height: 30px;
	border: 2px solid #ff914d;
	border-radius: 50%;
	background-color: white;
}

.radio-option input[type='radio']:checked:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: 7px;
	left: -37px;
	position: relative;
	background-color: #ff914d;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid white;
}

.radio-option input[type='radio']:checked + .radio-option::before {
	border-color: #ff914d;
	width: 20px;
	height: 20px;
}

.radio-option input[type='radio']:checked + .radio-option::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 9px;
	width: 8px;
	height: 8px;
	background-color: #ff914d;
	border-radius: 50%;
}

.option-group{
     width: 50%;
     padding: 10px;
     border: 2px solid #ff914d;
     border-radius: 40px;
}

footer {
    color: white;
    background-color: black;
    min-height: 140px;
    padding-top: 40px;
    padding-inline: 65px;
}

/* Modal container */
.modal {
  display: none; /* Əvvəlcə gizli */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

/* OK button */
.modal-content .btn {
  margin-top: 15px;
}
