body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
}

/* Main Color Classes (Red and White Theme) */
.text-red-600 {
    color: #dc2626;
}
.bg-red-600 {
    background-color: #dc2626;
}
.border-red-600 {
    border-color: #dc2626;
}
.hover\:bg-red-500:hover {
    background-color: #ef4444;
}
.hover\:text-red-600:hover {
    color: #dc2626;
}
.focus\:ring-red-600:focus {
    --tw-ring-color: #dc2626;
}

/* Component Styles */
nav {
    background-color: #1a1a1a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #dc2626;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
    background-color: #ef4444;
    transform: scale(1.05);
}

.card {
    background-color: #ffffff;
    border-top: 4px solid #dc2626;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05);
}

input[type="text"],
input[type="email"],
textarea {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    color: #1a1a1a;
    padding: 1rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.5);
}

.text-shadow-strong {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.cookie-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1), 0 -4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    z-index: 50;
}
.cookie-wrapper.show {
    display: flex;
}