Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+ color: #333;
+ }
+
+ header {
+ background: linear-gradient(135deg, #6a11cb, #2575fc);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ .header-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .header-content p {
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem 1rem;
+ }
+
+ .application-form {
+ max-width: 600px;
+ margin: 0 auto;
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .application-form h2 {
+ margin-bottom: 1.5rem;
+ font-size: 2rem;
+ color: #333;
+ }
+
+ .application-form label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: bold;
+ }
+
+ .application-form input,
+ .application-form textarea {
+ width: 100%;
+ padding: 0.75rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-size: 1rem;
+ }
+
+ .application-form button {
+ background: #2575fc;
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 4px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .application-form button:hover {
+ background: #1a5bbf;
+ }
+
+ .features {
+ margin-top: 3rem;
+ text-align: center;
+ }
+
+ .features h2 {
+ font-size: 2rem;
+ margin-bottom: 1.5rem;
+ color: #333;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .feature {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 0.75rem;
+ color: #2575fc;
+ }
+
+ .feature p {
+ font-size: 1rem;
+ color: #555;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: #333;
+ color: white;
+ margin-top: 2rem;
+ }
+
+ footer a {
+ color: #2575fc;
+ text-decoration: none;
+ }
+
+ footer a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .header-content h1 {
+ font-size: 2rem;
+ }
+
+ .header-content p {
+ font-size: 1rem;
+ }
+
+ .application-form {
+ padding: 1rem;
+ }
+
+ .features h2 {
+ font-size: 1.75rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }