
        :root {
            --primary-color: #0f2c59; /* Navy Blue for Trust */
            --secondary-color: #dac0a3; /* Beige/Gold for Elegance */
            --accent-color: #ea5455; /* Muted Red for Call to Actions */
            --text-dark: #333333;
            --text-light: #f4f4f4;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--text-dark);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
            transition: 0.3s;
        }

        .btn-consult {
            background-color: var(--accent-color);
            padding: 10px 20px;
            border-radius: 5px;
            color: white;
            font-weight: bold;
        }

        .btn-consult:hover {
            background-color: #c0392b;
        }

        /* Mobile Menu Icon (Hidden on Desktop) */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            background-image: url("1.png");
            
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 30px;
        }

        .hero-btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            border: none;
            cursor: pointer;
        }

        .hero-btn:hover {
            background-color: #c9af92;
        }

        /* --- SERVICES SECTION --- */
        .services {
            padding: 4rem 5%;
            background-color: var(--bg-light);
            text-align: center;
        }

        .section-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: #666;
            margin-bottom: 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            text-align: left;
            border-top: 4px solid var(--primary-color);
        }

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

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* --- ABOUT / TRUST SECTION --- */
        .trust-section {
            padding: 4rem 5%;
            background-color: white;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .trust-content {
            flex: 1;
            min-width: 300px;
        }

        .trust-content h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .trust-features {
            margin-top: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .feature-item i {
            color: green;
            margin-right: 10px;
        }

        .trust-image {
            flex: 1;
            min-width: 300px;
        }

        .trust-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* --- CONTACT SECTION --- */
        .contact {
            padding: 4rem 5%;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            text-align: left;
        }

        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
        }

        .contact-info h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .info-item {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .info-item i {
            margin-right: 15px;
            width: 20px;
            color: var(--secondary-color);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
        }

        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 25px;
            cursor: pointer;
            font-size: 1rem;
            border-radius: 5px;
            width: 100%;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #0a1f3d;
            color: #888;
            padding: 20px 5%;
            text-align: center;
            border-top: 1px solid #1a3a63;
        }

        /* --- MEDIA QUERIES (RESPONSIVENESS) --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* In a real scenario, you'd add JS to toggle this */
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                background-color: var(--primary-color);
                width: 100%;
                text-align: center;
                padding: 20px;
            }

            .menu-toggle {
                display: block;
                color: white;
            }

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

            .trust-section {
                flex-direction: column-reverse;
            }
        }
    