    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: #f5f5f5;
        }
        .container {
            max-width: 800px;
            margin: 40px auto;
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #4CAF50;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }
        .required {
            color: #f44336;
            margin-left: 5px;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        textarea:focus {
            outline: none;
            border-color: #4CAF50;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .error {
            color: #f44336;
            font-size: 14px;
            margin-top: 5px;
        }
        .error-input {
            border-color: #f44336 !important;
        }
        .button-group {
            margin-top: 30px;
            text-align: center;
        }
        .button-group button {
            background-color: #4CAF50;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .button-group button:hover {
            background-color: #45a049;
        }
		
        .agreement-box {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .agreement-content {
            background-color: white;
            border: 1px solid #ddd;
            padding: 15px;
            max-height: 200px;
            overflow-y: auto;
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }
        .checkbox-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
        .checkbox-group label {
            font-weight: normal;
            margin: 0;
            cursor: pointer;
        }
        .error-checkbox {
            border: 2px solid #f44336;
        }
		
		
		
.privacyBox {
	height: 300px;
	padding: 30px;
	border: 4px solid #f2f2f2;
	overflow-y: scroll;
	font-size: 1em;
}
.privacyBox h3 {
	font-size: 1.5em;
	font-weight: 700;
	margin-top: 0;
}
.privacyBox h4 {
	font-size: calc(16em / 14);
	font-weight: 700;
	margin: 0 0 10px;
}
.privacyBox h4 {
	font-size: calc(16em / 14);
	font-weight: 700;
	margin: 0 0 10px;
}
.privacyBox ol {
	list-style: decimal inside;	
}
.agreeBox {
	padding: 20px;
	background: #f2f2f2;
}
.agreeBox label {
	width: 100%;
	display: block;
	color: #555;
	margin: 0 auto;
	font-size: 16px;
	text-align: center;
}


.inline-flex {
  display: inline-flex;
  align-items: center;
}
    </style>