:root {
    --primary: #c14b4b;
    --secondary: #6c757d;
    --dark-blue: #006602;
    --light-gray: #f8f9fa;
    --gold: #d437d1;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-blue) !important;
}

.navbar-brand span {
    color: var(--gold);
}

.hero-section {
    background: url('https://www.consulting.us/illustrations/news/detail/2023-06-13-093658616-Companies_shearing_consulting_spend_amid_concerns_about_economic_outlook.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.card {
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.feature-box {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.btn-gold {
    background-color: var(--gold);
    border: none;
    color: white;
}

.btn-gold:hover {
    background-color: #c4a32f;
    color: white;
}

.price-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.price-period {
    font-size: 0.9rem;
    color: var(--secondary);
}

.price-feature {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 3rem 0;
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: white;
}

.social-icon:hover {
    color: var(--gold);
}

.main-news {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.main-news:hover {
    transform: translateY(-5px);
}

.main-news-img {
    object-fit: cover;
    width: 100%;
}

.main-news-content {
    padding: 20px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
}


.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}