 /* CSS Variables */
        :root {
            --primary-blue: #0a2540;
            --secondary-blue: #1d4e89;
            --accent-blue: #3a7bd5;
            --primary-orange: #ff6b35;
            --secondary-orange: #ff8e53;
            --light-bg: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #1e293b;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-gray);
            /*container: var(--white);*/
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.2rem;
        }

        h1 {
            font-size: 3.5rem;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        h2 {
            font-size: 2.5rem;
            /*color: var(--primary-blue);*/
            position: relative;
            padding-bottom: 15px;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            border-radius: 2px;
        }

        h3 {
            font-size: 1.8rem;
            color: var(--secondary-blue);
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #ffffff;
        }

        a {
            text-decoration: none;
            color: var(--accent-blue);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 85vh;
            background: linear-gradient(rgba(41, 82, 124, 0.888), rgba(20, 60, 100, 0.77)), url('/images/jerusalem.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* Content Sections */
        .section {
            padding: 100px 0;
        }

        /*.section-alt {
            background-color: var(--light-bg);
        }*/

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
           /* background-color: var(--white);*/
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary-orange);
            font-size: 1.8rem;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-caption {
            padding: 20px;
            background-color: var(--white);
        }

        .gallery-caption h4 {
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .gallery-caption p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: var(--medium-gray);
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            padding: 50px;
            border-radius: var(--radius);
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255,255,255,0.05);
            transform: rotate(30deg);
        }

        .highlight-box h3 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .highlight-box p {
            color: rgba(255,255,255,0.9);
        }

        /* Estate Preview */
        .estate-preview {
            background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.95)), url('https://images.unsplash.com/photo-1600585154340-6f29e8528f5a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
            position: relative;
        }

        .estate-preview h2 {
            color: var(--white);
        }

        .estate-preview h2:after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-orange);
        }

        .estate-preview p {
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255,255,255,0.9);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--medium-gray);
            font-weight: 500;
        }

        /* Footer *
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-orange);
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero {
                height: 70vh;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.9rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .hero {
                height: 60vh;
                text-align: center;
            }
            
            .hero-content {
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .highlight-box {
                padding: 30px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
        }