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

body {
    font-family: 'Inter', sans-serif;
}

.nav-link {
    color: #4B5563; /* text-gray-600 */
    font-weight: 500; /* font-medium */
    position: relative;
.section-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800; /* font-extrabold */
    color: #111827; /* text-gray-900 */
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem; /* md:text-4xl */
    }
}

.service-card {
    background-color: #fff; /* bg-white */
    padding: 2rem; /* p-8 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* shadow-lg */
    transition: all 0.3s;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-0.5rem); /* hover:-translate-y-2 */
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); /* hover:shadow-2xl */
}

.card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: bold; /* font-bold */
    color: #111827; /* text-gray-900 */
    margin-top: 1.5rem; /* mt-6 */
    margin-bottom: 0.5rem; /* mb-2 */
}

.card-text {
    color: #4B5563; /* text-gray-600 */
}

.icon-wrapper {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    background-color: #DBEAFE; /* bg-blue-100 */
    color: #2563EB; /* text-blue-600 */
    border-radius: 9999px; /* rounded-full */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto; /* mx-auto */
    font-size: 1.5rem; /* text-2xl */
}

.property-card {
    background-color: #fff; /* bg-white */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); /* shadow-md */
    overflow: hidden;
    transition: all 0.3s;
    transform: scale(1);
}

.property-card:hover {
    transform: scale(1.05); /* hover:scale-105 */
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); /* hover:shadow-xl */
}

.form-input {
    margin-top: 0.25rem; /* mt-1 */
    display: block;
    width: 100%;
    background-color: #F3F4F6; /* bg-gray-100 */
    border: 1px solid #D1D5DB; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); /* shadow-sm */
    padding: 0.75rem 1rem; /* py-3 px-4 */
    color: #1F2937; /* text-gray-800 */
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #3B82F6; /* focus:ring-2 focus:ring-blue-500 */
    border-color: transparent; /* focus:border-transparent */
}
}

/* Removed @apply directives as they are not valid in standard CSS. 
   The equivalent styles are already defined above in standard CSS syntax. */
