body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.header-main {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c41e3a;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #c41e3a;
}

.btn-primary {
    background-color: #c41e3a;
    border-color: #c41e3a;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #a01829;
    border-color: #a01829;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.btn-outline-primary {
    color: #c41e3a;
    border-color: #c41e3a;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: #c41e3a;
    border-color: #c41e3a;
    color: #fff;
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #c41e3a;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
}

.benefits-list {
    padding-left: 0;
}

.benefit-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #c41e3a;
}

.benefit-item h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #555;
    margin: 0;
}

.service-card {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
}

.who-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    height: 100%;
}

.who-card h4 {
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.who-card p {
    color: #555;
    margin: 0;
}

.testimonial-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #fff;
    border-color: #fff;
    color: #c41e3a;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.footer-main {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c41e3a;
}

.footer-divider {
    border-color: #444;
    margin: 2rem 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-legal li {
    margin: 0 1rem 0.5rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #c41e3a;
}

.footer-copyright {
    text-align: center;
    color: #888;
    margin: 0;
}

.page-header {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    margin: 0;
}

.content-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.value-card {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.value-card h4 {
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.contact-info-box {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.contact-info-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.contact-info-card h4 {
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 1.5rem;
}

.contact-info-card a {
    color: #c41e3a;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.hours-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: #c41e3a;
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.1);
}

.contact-form label {
    font-weight: 600;
    color: #1a1a1a;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-list {
    padding-left: 1.5rem;
}

.service-list li {
    margin-bottom: 0.75rem;
    color: #555;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #c41e3a;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #555;
    margin: 0;
}

.thankyou-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.thankyou-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thankyou-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1rem;
}

.thankyou-subtext {
    color: #777;
    margin-bottom: 2rem;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-reminder a {
    color: #c41e3a;
    text-decoration: none;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

.legal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #555;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .thankyou-title {
        font-size: 1.75rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
