Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #333;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --white: #fff;
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background-color: var(--primary-color);
+ color: var(--white);
+ padding: 20px 0;
+ }
+
+ .header .logo {
+ font-size: 24px;
+ font-weight: bold;
+ }
+
+ .header .nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ gap: 20px;
+ }
+
+ .header .nav ul li a {
+ color: var(--white);
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ background: url('/images/hero.jpg') no-repeat center center/cover;
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h2 {
+ font-size: 48px;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 20px;
+ margin-bottom: 30px;
+ }
+
+ .hero .btn {
+ background-color: var(--white);
+ color: var(--primary-color);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ }
+
+ .listings {
+ padding: 60px 0;
+ }
+
+ .listings h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ }
+
+ .listing-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+ }
+
+ .listing-card {
+ background-color: var(--white);
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: var(--shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .listing-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .listing-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .listing-content {
+ padding: 20px;
+ }
+
+ .listing-content h3 {
+ margin-bottom: 10px;
+ }
+
+ .listing-content p {
+ margin-bottom: 20px;
+ }
+
+ .listing-content .btn {
+ background-color: var(--primary-color);
+ color: var(--white);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+ }
+
+ .about, .contact {
+ padding: 60px 0;
+ text-align: center;
+ }
+
+ .contact form {
+ max-width: 600px;
+ margin: 0 auto;
+ text-align: left;
+ }
+
+ .contact label {
+ display: block;
+ margin-bottom: 5px;
+ }
+
+ .contact input, .contact textarea {
+ width: 100%;
+ padding: 10px;
+ margin-bottom: 20px;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ .contact button {
+ background-color: var(--primary-color);
+ color: var(--white);
+ padding: 10px 20px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ }
+
+ .footer {
+ background-color: var(--secondary-color);
+ color: var(--white);
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @media (max-width: 768px) {
+ .hero h2 {
+ font-size: 36px;
+ }
+
+ .hero p {
+ font-size: 18px;
+ }
+
+ .listing-grid {
+ grid-template-columns: 1fr;
+ }
+ }