Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #f5f5f5;
+ --text-color: #333;
+ --white: #ffffff;
+ --shadow: 0 2px 10px rgba(0,0,0,0.1);
+ --radius: 8px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ a {
+ text-decoration: none;
+ color: inherit;
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/hero.jpg');
+ background-size: cover;
+ background-position: center;
+ color: var(--white);
+ padding: 2rem;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ width: 100%;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 2rem;
+ }
+
+ .search-form {
+ display: grid;
+ grid-template-columns: 2fr 1fr auto;
+ gap: 1rem;
+ width: 100%;
+ max-width: 800px;
+ }
+
+ .search-form input,
+ .search-form select {
+ padding: 0.8rem;
+ border: none;
+ border-radius: var(--radius);
+ }
+
+ .search-form button {
+ background: var(--primary-color);
+ color: var(--white);
+ border: none;
+ padding: 0.8rem 2rem;
+ border-radius: var(--radius);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .search-form button:hover {
+ background: #1557b0;
+ }
+
+ .listings-section {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .listings-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .listing-card {
+ background: var(--white);
+ border-radius: var(--radius);
+ overflow: hidden;
+ box-shadow: var(--shadow);
+ transition: var(--transition);
+ }
+
+ .listing-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .listing-image {
+ height: 200px;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .listing-details {
+ padding: 1.5rem;
+ }
+
+ .listing-details h3 {
+ margin-bottom: 0.5rem;
+ }
+
+ .location {
+ color: #666;
+ margin-bottom: 0.5rem;
+ }
+
+ .price {
+ font-size: 1.25rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ .description {
+ margin-bottom: 1.5rem;
+ }
+
+ .btn {
+ display: inline-block;
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 0.8rem 1.5rem;
+ border-radius: var(--radius);
+ transition: var(--transition);
+ }
+
+ .btn:hover {
+ background: #1557b0;
+ }
+
+ .about-section {
+ background: var(--secondary-color);
+ padding: 4rem 2rem;
+ }
+
+ .about-content {
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .contact-section {
+ padding: 4rem 2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .contact-form {
+ display: grid;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 0.8rem;
+ border: 1px solid #ddd;
+ border-radius: var(--radius);
+ }
+
+ .contact-form button {
+ background: var(--primary-color);
+ color: var(--white);
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: var(--radius);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .contact-form button:hover {
+ background: #1557b0;
+ }
+
+ footer {
+ background: var(--text-color);
+ color: var(--white);
+ padding: 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h3,
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section ul li {
+ margin-bottom: 0.5rem;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .search-form {
+ grid-template-columns: 1fr;
+ }
+
+ .navbar {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+ }