 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: #1a472a;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }
        
        .logo span {
            color: #d4af37;
        }
        
        .logo-icon {
            font-size: 2rem;
            color: #d4af37;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 2rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav a:hover, nav a.active {
            color: #d4af37;
            background-color: rgba(212, 175, 55, 0.1);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;
        }
        
        .hero h2 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: #d4af37;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: #d4af37;
            color: #1a472a;
            padding: 0.9rem 2.2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s, transform 0.3s;
            margin: 0.5rem;
        }
        
        .btn:hover {
            background-color: #c19b2c;
            transform: translateY(-3px);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid #d4af37;
            color: white;
        }
        
        .btn-outline:hover {
            background-color: rgba(212, 175, 55, 0.2);
        }
        
        /* Page Headings */
        .page-heading {
            text-align: center;
            padding: 3rem 0 1.5rem;
            background-color: #f1f5f1;
        }
        
        .page-heading h1 {
            font-size: 2.8rem;
            color: #1a472a;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 0.5rem;
        }
        
        .page-heading p {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 3rem 0;
        }
        
        .gallery-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .gallery-intro h2 {
            color: #1a472a;
            margin-bottom: 1rem;
            font-size: 2.2rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 250px;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 71, 42, 0.85);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* Property Highlights */
        .highlights {
            background-color: #f1f5f1;
            padding: 4rem 0;
        }
        
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .highlight-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .highlight-card:hover {
            transform: translateY(-5px);
        }
        
        .highlight-icon {
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 1.5rem;
        }
        
        .highlight-card h3 {
            color: #1a472a;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        /* Contact Page Styles */
        .contact-section {
            padding: 3rem 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: start;
        }
        
        .contact-info {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info h2 {
            color: #1a472a;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.8rem;
        }
        
        .contact-icon {
            background-color: #f1f5f1;
            color: #1a472a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            font-size: 1.3rem;
        }
        
        .contact-details h3 {
            color: #1a472a;
            margin-bottom: 0.3rem;
            font-size: 1.2rem;
        }
        
        .contact-details a {
            color: #f1f5f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-details a:hover {
            color: #d4af37;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 450px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background-color: #e9f0e9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #1a472a;
            text-align: center;
            cursor: pointer;
            position: relative;
        }
        
        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: #d4af37;
        }
        
        .map-placeholder p {
            margin-top: 1rem;
            font-weight: 500;
        }
        
        #actualMap {
            width: 100%;
            height: 100%;
            display: none;
        }
        
        /* Footer */
        footer {
            background-color: #1a472a;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .footer-column p {
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #d4af37;
        }
        
        .footer-contact .contact-item {
            margin-bottom: 1.2rem;
        }
        
        .footer-contact .contact-icon {
            background-color: rgba(212, 175, 55, 0.1);
            color: #d4af37;
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav {
                width: 100%;
                margin-top: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                display: none;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav li {
                margin: 0.5rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
            
            .page-heading h1 {
                font-size: 2.2rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 350px;
            }
        }
        
        /* Structured Data Styling */
        .structured-data {
            display: none;
        }
        
        /* SEO Keyword Highlights */
        .keyword-highlight {
            color: #1a472a;
            font-weight: 600;
        }