		@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #1E1E1E;
            margin: 0 0px 0;
        }

        /* Header */
        
header {
	position: fixed;
	top: 0;
	background-color: transparent;
	transition: background-color 0s;
	z-index: 1000;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	left: 0;
	right: 0;
}


        nav {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

		p {
			font-family: 'Instrument Sans', sans-serif;
			font-weight: 200;
		}

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: #0E377A;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 400;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: red;
        }

        .download-btn {
            background: linear-gradient(135deg, #1B416D 0%, #507BAA 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            font-family: 'Instrument Sans', sans-serif;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .download-btn:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1B416D 0%, #507BAA 100%);
            color: white;
            padding: 8rem 2rem 4rem;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 64px;
            font-weight: 500;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 24px;
            font-weight: 200;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .app-badges {
            display: flex;
            gap: 1rem;
        }

        .app-badge {
            background: #1E1E1E;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 16px;
            transition: transform 0.3s;
        }

        .app-badge:hover {
            transform: translateY(-2px);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .house-illustration {
            width: 300px;
            height: 200px;
            background: linear-gradient(135deg, #4a90e2 0%, #0E377A 100%);
            border-radius: 20px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .house-illustration::before {
            content: "🏠";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: #EFEFEF;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features h2 {
            text-align: left;
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 200;
            margin-bottom: 3rem;
            color: #0E377A;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 1rem;
            color: #0E377A;
        }

        .feature-card p {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 24px;
            color: #1E1E1E;
            line-height: 1.6;
        }

        /* App Preview Section */
        .app-preview {
            padding: 6rem 2rem;
            background: #D9D9D9;
        }

        .app-preview-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .app-preview h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 200;
            margin-bottom: 2rem;
            color: #0E377A;
        }

        .app-preview p {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 24px;
            color: #1E1E1E;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .phone-mockup {
            width: 300px;
            height: 600px;
            background: linear-gradient(135deg, #FAFAFA 0%, #EFEFEF 100%);
            border-radius: 30px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-mockup::before {
            content: "📱";
            font-size: 8rem;
            opacity: 0.3;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 2rem;
            background: #EFEFEF;
            text-align: left;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq h2 {
            
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 200;
            margin-bottom: 3rem;
            color: #0E377A;
        }

        .faq-item {
            background: #FAFAFA;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #1E1E1E;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: #EFEFEF;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            font-family: 'Instrument Sans', sans-serif;
            color: #1E1E1E;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 2rem;
            background: #D9D9D9;
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing h2 {
            font-family: 'Poppins', sans-serif;
            text-align: left;
            font-size: 48px;
            font-weight: 200;
            margin-bottom: 3rem;
            color: #0E377A;
        }

        .pricing-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            margin: 0 auto;
        }

        .price {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 3.5rem;
            font-weight: 200;
            color: #0E377A;
            margin-bottom: 0.5rem;
        }

        .price-period {
            font-family: 'Instrument Sans', sans-serif;
            color: #1E1E1E;
            margin-bottom: 2rem;
        }

        /* Footer */
        footer {
            background: #EFEFEF;
            color: #0E377A;
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 200;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-logo::before {
            content: "🏠";
            font-size: 1.8rem;
        }

        .footer h3 {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            font-weight: 200;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            color: #0E377A;
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 0.8;
        }

        .footer-apps {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .footer-app-badge {
            background: #1E1E1E;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 16px;
            transition: transform 0.3s;
        }

        .footer-app-badge:hover {
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 20px;
            }

            .features h2 {
                font-size: 32px;
                font-weight: 200;
            }

            .feature-card h3 {
                font-size: 14px;
            }

            .feature-card p {
                font-size: 20px;
            }

            .app-preview h2 {
                font-size: 32px;
                font-weight: 200;
            }

            .faq h2 {
                font-size: 32px;
                font-weight: 200;
            }

            .pricing h2 {
                font-size: 32px;
                font-weight: 200;
            }

            .nav-links a {
                font-size: 16px;
            }

            .download-btn {
                font-size: 16px;
            }

            .footer-links a {
                font-size: 16px;
            }

            .footer-app-badge {
                font-size: 16px;
            }

            .app-preview-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .nav-links {
                display: none;
            }
        }