Changed around line 1
+ :root {
+ --primary-color: #2a6bed;
+ --secondary-color: #f5f7ff;
+ --text-color: #333;
+ --border-radius: 8px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: #fafafa;
+ }
+
+ header {
+ background: white;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .form-section {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.05);
+ margin-bottom: 2rem;
+ }
+
+ .form-group {
+ margin-bottom: 1rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 0.75rem;
+ border: 1px solid #ddd;
+ border-radius: var(--border-radius);
+ font-size: 1rem;
+ transition: var(--transition);
+ }
+
+ input:focus, textarea:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ box-shadow: 0 0 0 3px rgba(42,107,237,0.1);
+ }
+
+ .btn-primary {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ font-size: 1rem;
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .btn-primary:hover {
+ background: #1a5bd0;
+ transform: translateY(-1px);
+ }
+
+ .spaces-grid {
+ display: grid;
+ gap: 1.5rem;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ }
+
+ .space-card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: var(--border-radius);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.05);
+ transition: var(--transition);
+ cursor: pointer;
+ }
+
+ .space-card:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ }
+
+ .space-tag {
+ display: inline-block;
+ padding: 0.25rem 0.75rem;
+ background: var(--secondary-color);
+ border-radius: 20px;
+ font-size: 0.875rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ font-size: 1.5rem;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ padding: 1rem;
+ flex-direction: column;
+ gap: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .spaces-grid {
+ grid-template-columns: 1fr;
+ }
+ }