Changed around line 1
+ :root {
+ --primary-color: #2a6bf2;
+ --secondary-color: #1a1a1a;
+ --accent-color: #ffd700;
+ --text-color: #333333;
+ --light-bg: #f5f7fa;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--secondary-color);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ main {
+ margin-top: 4rem;
+ }
+
+ .hero {
+ height: 90vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: gradientFlow 8s ease infinite;
+ }
+
+ @keyframes gradientFlow {
+ 0% { background-position: 0% 50%; }
+ 50% { background-position: 100% 50%; }
+ 100% { background-position: 0% 50%; }
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 30px;
+ margin-top: 2rem;
+ transition: var(--transition);
+ box-shadow: 0 4px 15px rgba(42, 107, 242, 0.2);
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 20px rgba(42, 107, 242, 0.3);
+ }
+
+ section {
+ padding: 5rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .amenities-list {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-top: 2rem;
+ }
+
+ .amenity {
+ background: var(--light-bg);
+ padding: 1rem;
+ border-radius: 8px;
+ text-align: center;
+ transition: var(--transition);
+ }
+
+ .amenity:hover {
+ background: var(--primary-color);
+ color: white;
+ transform: scale(1.05);
+ }
+
+ .application-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ input, select, textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #eee;
+ border-radius: 6px;
+ transition: var(--transition);
+ }
+
+ input:focus, select:focus, textarea:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ }
+
+ .submit-button {
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 6px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-button:hover {
+ background: #1a5ad9;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ margin-right: 1rem;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--accent-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--secondary-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ section {
+ padding: 3rem 5%;
+ }
+ }