    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Newsreader', sans-serif;
            color: #ffffff;
            background-color: #0a1929;
            line-height: 1.6;
        }



        /* Sticky Header */
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(10, 25, 41, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 10%;
            transform: translateY(-100%);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .sticky-header.visible {
            transform: translateY(0);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .header-logo {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .header-logo a {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .header-nav {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .header-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .header-nav a:hover {
            color: #4a90e2;
        }

        .header-cta {
            background-color: #4a90e2;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .header-cta:hover {
            background-color: #3a7bc8;
            color: #ffffff !important;
        }

        .header-secondary {
            background-color: transparent;
            color: #4a90e2;
            padding: 0.5rem 1rem;
            border: 2px solid #4a90e2;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .header-secondary:hover {
            background-color: #4a90e2;
            color: white;
        }


        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(10, 25, 41, 0.7), rgba(10, 25, 41, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23152238" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 80px 10%;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(21, 34, 56, 0.9) 0%, rgba(10, 25, 41, 0.95) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero h2 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 3rem;
            color: #e0e0e0;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: #4a90e2;
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #3a7bc8;
        }

        .btn-secondary {
            background-color: transparent;
            color: #4a90e2;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border: 2px solid #4a90e2;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: #4a90e2;
            color: white;
        }


        /* Section Styles */
        section {
            padding: 4rem 10%;
        }

        .section-dark {
            background-color: #0f1e2e;
        }

        .section-darker {
            background-color: #0a1929;
        }


        h2 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        /* Problem Section */
        .problem-section {
            text-align: left;
        }

        .problem-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0rem 3rem;
            margin-top: 3rem;
        }

        .problem-text p {
            font-size: 1.3rem;
            line-height: 1.1;
            margin-bottom: 1.1rem;
            color: #d0d0d0;
        }




        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
            margin-bottom: 4rem;
        }

        .card {
            background: linear-gradient(135deg, #1e3a5f 0%, #2a5a8f 100%);
            padding: 2.5rem;
            border-radius: 8px;
            text-align: left;
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
             line-height: 1.1;
        }

        .card p {
            color: #d0d0d0;
            line-height: 1.1;
        }



        .difference-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
            margin-bottom: 4rem;
        }

        .difference-card {
            background: transparent;
            padding: 2.5rem;
            border: 2px solid #4a90e2;
            border-radius: 8px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .difference-card:hover {
            background: rgba(74, 144, 226, 0.05);
            border-color: #6aa8e8;
        }

        .difference-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.1rem;
            line-height: 1.1;
            font-weight: 400;
        }

        .difference-card p {
            color: #d0d0d0;
            line-height: 1.1;
            font-size: 1.05rem;
        }

        .difference-card ul {
            list-style: disc;
            padding:0;
            margin-left:10px;
        }

        .difference-card li {
            padding:  0;
            color: #d0d0d0;
        }

        .difference-card li:last-child {
            border-bottom: none;
        }



        .autocomplete-container {
          position: relative;
          width: 100%
        }

        .autocomplete-input {
          width: 100%;
        }


        .autocomplete-results3 {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: #fff;
          color:black;
          max-height: 200px;
          overflow-y: auto;
          z-index: 10;
        }


        /* Contact Section Styles */
        .contact-section {
            background-color: #0f1e2e;
            padding: 8rem 10% 5rem;
            min-height: 100vh;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .contact-header h2 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .contact-header p {
            font-size: 1.2rem;
            color: #d0d0d0;
            line-height: 1.6;
        }

        .cards-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .property-row {
            width: 100%;
        }

        .property-card {
            width: 100%;
        }

        .property-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .info-card {
            background: linear-gradient(135deg, #1e3a5f 0%, #2a5a8f 100%);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .card-title {
            font-size: 1.8rem;
            color: #4a90e2;
            margin-bottom: 2rem;
            padding-bottom: 0rem;
            border-bottom: 2px solid #4a90e2;
            font-weight: 400;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .primary {
            background-color: #4a90e2;
            color: white;
            cursor: pointer;
            border-radius: 4px;
        }

        .secondary {
            background-color: transparent;
            color: #4a90e2;
            cursor: pointer;
            border-radius: 4px;
        }


        .card-submit-btn {
            background-color: #4a90e2;
            color: #ffffff;
            padding: 0.5rem 1rem;
            border: 2px solid #4a90e2;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            margin: .5rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }


        .card-submit-btn.disabled {
            background-color: transparent;
            color: #ffffff;
            padding: 0.5rem 1rem;
            border: 2px solid #4a90e2;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            margin: .5rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .card-submit-btn:hover {
            background-color: #3a7bc8;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
        }

        .card-submit-btn:active {
            transform: translateY(0);
        }

        .card-form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: .5rem;
        }

        .form-group label {
            display: block;
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            font-size: 1rem;
            background-color: rgba(10, 25, 41, 0.6);
            border: 1px solid rgba(74, 144, 226, 0.3);
            border-radius: 4px;
            color: #ffffff;
            font-family: 'Newsreader', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4a90e2;
            background-color: rgba(10, 25, 41, 0.8);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #8a9ba8;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background-color: #0a1929;
            color: #ffffff;
        }

        .required {
            color: #e74c3c;
            margin-left: 0.2rem;
        }

        .inline-field {
            display: flex;
            align-items: center;
            /* justify-content: space-between;  Pushes label left, input right */
            gap: 0.5rem;
        }

        .inline-field label {
            margin-bottom: 0;
            white-space: nowrap;
            font-size: 0.9rem;
        }

        .inline-field input {
            width: 150px; /* Just enough for "January 2025" */
            flex: 0 0 auto; /* Don't grow or shrink */
             margin-left: auto; /* Push to the right */
        }

        .small-field input {
            width: 150px; /* Just enough for "January 2025" */
            flex: 0 0 auto; /* Don't grow or shrink */
        }


        .centered-field {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            grid-column: 1 / -1; /* Span full width of the grid */
        }

        .centered-field label {
            margin-bottom: 0;
            white-space: nowrap;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-align: center;
        }

        .centered-field input {
            width: 150px; /* Just enough for "January 2025" */
        }


        .submit-section {
            margin-top: 3rem;
            text-align: center;
        }

        .btn-submit {
            background-color: #4a90e2;
            color: white;
            padding: 1.2rem 4rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-family: 'Newsreader', sans-serif;
            font-weight: 400;
        }

        .btn-submit:hover {
            background-color: #3a7bc8;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .form-note {
            text-align: center;
            margin-top: 2rem;
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        /* Success Message */
        .success-message {
            background-color: #27ae60;
            color: white;
            padding: 1.5rem;
            border-radius: 4px;
            text-align: center;
            margin-bottom: 2rem;
            display: none;
        }

        .success-message.show {
            display: block;
        }


        .file-drop-zone {
            border: 2px dashed rgba(74, 144, 226, 0.4);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            background-color: rgba(10, 25, 41, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-drop-zone:hover {
            border-color: #4a90e2;
            background-color: rgba(74, 144, 226, 0.05);
        }

        .file-drop-zone.drag-over {
            border-color: #4a90e2;
            background-color: rgba(74, 144, 226, 0.1);
            transform: scale(1.02);
        }

        .drop-zone-content svg {
            color: #4a90e2;
            margin-bottom: 1rem;
        }

        .drop-zone-text {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .browse-link {
            color: #4a90e2;
            text-decoration: underline;
            cursor: pointer;
        }

        .drop-zone-hint {
            color: #8a9ba8;
            font-size: 0.9rem;
        }

        .file-list {
            margin-top: 1rem;
            text-align: left;
        }

        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem;
            background-color: rgba(74, 144, 226, 0.1);
            border-radius: 4px;
            margin-bottom: 0.5rem;
        }

        .file-item-name {
            color: #ffffff;
            font-size: 0.95rem;
        }

        .file-item-size {
            color: #8a9ba8;
            font-size: 0.85rem;
            margin-left: 0.5rem;
        }

        .file-remove {
            color: #e74c3c;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0 0.5rem;
            transition: color 0.2s ease;
        }

        .file-remove:hover {
            color: #c0392b;
        }


        .file-submit-btn {
            background-color: #4a90e2;
            color: white;
            padding: 0.9rem 2rem;
            font-size: 1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Newsreader', sans-serif;
            font-weight: 400;
            margin-top: 1rem;
            width: 100%;
        }

        .file-submit-btn:hover {
            background-color: #3a7bc8;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
        }

        .file-submit-btn:active {
            transform: translateY(0);
        }


        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .cards-grid,
            .services-grid,
            .difference-cards-grid,
            .cards-container  {
                grid-template-columns: 1fr;
            }

            .problem-content,
            .protection-section {
                grid-template-columns: 1fr;
            }

            section {
                padding: 4rem 5%;
            }

            .row-2 {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

        }



        @media (max-width: 768px) {
            .hero {
                padding: 60px 5%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.2rem;
            }

            h2 {
                font-size: 2rem;
            }

            .sticky-header {
                padding: 1rem 5%;
            }

            .header-logo {
                font-size: 1.3rem;
            }



            .contact-section {
                padding: 6rem 5% 3rem;
            }

            .contact-header h2 {
                font-size: 2rem;
            }

            .info-card {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .btn-submit {
                width: 100%;
                padding: 1rem 2rem;
            }


        }

    </style>