:root {
    --primary: #dc3545;
    --primary-dark: #c82333;
    --secondary: #ffc107;
    --dark: #212529;
    --light: #f8f9fa;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fef6f6;
}
.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
@media (max-width: 991.98px) {
    .brand-logo {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
@media (max-width: 575.98px) {
    .brand-logo {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 1.5rem;
}
.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--primary) !important;
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.contact-hero {
    background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(220,53,69,0.05) 100%);
    padding: 4rem 0 3rem;
}
.contact-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.contact-icon i {
    color: white;
    font-size: 2rem;
}
.contact-info {
    background: rgba(220, 53, 69, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    margin-bottom: 1.5rem;
}
.contact-info h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.contact-info p {
    margin-bottom: 0;
    color: var(--dark);
}
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: background-color 0.3s;
}
.social-icon:hover {
    background-color: var(--primary);
}
.email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}