Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --accent-color: #e74c3c;
+ --text-color: #333;
+ --light-gray: #f5f6fa;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ header {
+ background: var(--primary-color);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ color: white;
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .nav-links a.active {
+ color: var(--accent-color);
+ }
+
+ main {
+ margin-top: 4rem;
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
+ url('data:image/jpeg;base64,/9j/4AAQSkZJRg==');
+ background-size: cover;
+ background-position: center;
+ height: 60vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ color: white;
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 2rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
+ }
+
+ .search-container {
+ width: 100%;
+ max-width: 600px;
+ margin-bottom: 1rem;
+ }
+
+ input[type="text"] {
+ width: 70%;
+ padding: 1rem;
+ border: none;
+ border-radius: 4px 0 0 4px;
+ font-size: 1rem;
+ }
+
+ button {
+ width: 30%;
+ padding: 1rem;
+ background: var(--accent-color);
+ border: none;
+ color: white;
+ border-radius: 0 4px 4px 0;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ button:hover {
+ background: #c0392b;
+ }
+
+ .filters {
+ display: flex;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ select {
+ padding: 0.5rem;
+ border: none;
+ border-radius: 4px;
+ background: white;
+ cursor: pointer;
+ }
+
+ .listings {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .property-card {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .property-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.2);
+ }
+
+ .property-image {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .property-info {
+ padding: 1rem;
+ }
+
+ .property-price {
+ color: var(--accent-color);
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h3 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ display: block;
+ margin-bottom: 0.5rem;
+ transition: var(--transition);
+ }
+
+ .footer-section a:hover {
+ color: var(--accent-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero {
+ height: 70vh;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ .filters {
+ flex-direction: column;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ input[type="text"], button {
+ width: 100%;
+ border-radius: 4px;
+ }
+
+ button {
+ margin-top: 0.5rem;
+ }
+ }