/* --- Brand Colors --- */
:root {
    --primary-color: #bd335c;   /* Deep Berry/Red (New Accent) */
    --accent-color: #ffb148;    /* Vibrant Orange/Gold (New Highlight) */
    --light-color: #ffffff;     /* White */
    --dark-color: #000000;      /* Black */

    /* Subtle Light Gradient (Using White and a light gray for the background) */
    --light-bg-start: #f8f8f8; 
    --light-bg-end: #ededed;   
}

/* --- General Styling and Gradient Background --- */
.muscat-page-container {
    /* Subtle, light gradient background across the entire page */
    background: linear-gradient(135deg, var(--light-bg-start) 0%, var(--light-bg-end) 100%);
    color: var(--dark-color);
    font-family: 'Arial', sans-serif; /* Use a standard, professional font */
}

.section-heading {
    color: var(--primary-color); /* Deep Berry/Red */
    font-weight: 700;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    display: inline-block;
}

/* --- Hero Section Styling --- */
.hero-section {
    background-color: var(--primary-color); /* Deep Berry/Red Background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 2.8rem;
    color: var(--accent-color); /* Vibrant Orange/Gold */
}

.hero-section p.lead, .hero-section .info-text {
    color: var(--light-color); /* White */
}

/* --- Custom Buttons (Primary CTA in Orange) --- */
.btn-primary-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: bold;
    padding: 10px 30px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary-custom:hover {
    background-color: #e59e35; /* Darker Orange */
    border-color: #e59e35;
    transform: translateY(-2px);
    color: var(--dark-color);
}

/* Custom Buttons (Secondary CTA in Deep Berry) */
.btn-secondary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 15px 40px;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-secondary-custom:hover {
    background-color: #a42c4f; /* Darker Deep Berry */
    border-color: #a42c4f;
    transform: scale(1.05);
}

/* --- Feature and Box Styling --- */
.feature-box {
    background: var(--light-color); /* White background */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    border-top: 4px solid var(--primary-color); /* Deep Berry Top Border */
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon, .solution-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.primary-color {
    color: var(--primary-color); /* Deep Berry/Red */
}

.accent-color {
    color: var(--accent-color); /* Vibrant Orange/Gold */
}

/* --- Compliance Section (Deep Berry/Red Background for Contrast) --- */
.compliance-section {
    background-color: var(--primary-color);
    color: var(--light-color); /* White text */
}

.compliance-list li {
    list-style-type: '✅';
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.image-placeholder {
    background: #a42c4f; /* Slightly darker Deep Berry placeholder */
    height: 300px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* --- Why Us Section Styling --- */
.why-us-section {
    background-color: var(--light-color); /* White */
    padding: 70px 0;
}

.why-us-box {
    background-color: var(--light-bg-start);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 100%;
    border-bottom: 5px solid var(--accent-color); /* Orange/Gold Bottom Border */
}

.why-us-box .feature-icon {
    color: var(--primary-color); /* Deep Berry/Red */
}

/* --- FAQ Styling --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--light-color); /* White background */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color); /* Orange/Gold border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* --- Final CTA Section --- */
.final-cta {
    background-color: var(--accent-color); /* Vibrant Orange/Gold */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.final-cta .lead {
    color: var(--dark-color); /* Black text for readability on orange */
    font-weight: 600;
}

/* --- Animation keyframes (for button pulse) --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 177, 72, 0.4); /* Uses the accent color */
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 177, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 177, 72, 0);
    }
}
.pulse-animation {
    animation: pulse 2s infinite;
}