body {
    font-family: 'Droid Sans', sans-serif;
    color: #212121;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-link {
    @apply font-oswald uppercase tracking-wider text-gray-600 hover:text-red-600 transition-colors duration-300;
}

.nav-link.active {
    @apply text-red-600;
}

.mobile-nav-link {
    @apply block px-3 py-2 rounded-md text-base font-medium font-oswald uppercase tracking-wider text-gray-700 hover:text-red-600 hover:bg-gray-50;
}

.cta-button {
    @apply bg-red-600 text-white font-bold py-3 px-8 rounded-md text-lg uppercase tracking-wider hover:bg-red-700 transition-colors;
}

.info-box {
    @apply bg-gray-50 p-6 rounded-lg text-center;
}

.footer-heading {
    @apply text-lg font-bold font-oswald uppercase mb-4;
}

.footer-text {
    @apply text-gray-400 text-sm;
}

.service-card {
    @apply bg-gray-50 p-8 rounded-lg shadow-md h-full flex flex-col;
}

.service-title {
    @apply text-2xl font-bold text-red-600 mb-4;
}

.service-image {
    @apply w-full h-40 object-cover rounded-md mb-6;
}

.service-description {
    @apply text-gray-600 mb-4 flex-grow;
}

.form-input {
    @apply w-full mt-1 p-3 border border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500;
}
