:root {
    --primary: #03a9f4;
    --accent: #8bc34a;
    --bg: #f7f7f7;
    --text: #212121;
    --navy: #1a1d23;
    --light-bg: #ffffff;
    --border-color: #ddd;
    --font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.logo-img {
    max-width: 48px;
    height: auto;
}

img:not(.logo-img):not(.logo) {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 140px 0;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.header-main .navbar {
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-main .navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 17px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    color: #fff !important;
}

.navbar-brand .site-name {
    font-size: 1.25rem;
    color: #fff;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent) !important;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.dropdown-menu {
    background: var(--navy);
    border: none;
    border-radius: 4px;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-text {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 49px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-media {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 26px 50px -13px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 77px;
    height: 79px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: -13px;
    left: -7px;
    right: -8px;
    bottom: -9px;
    background: rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.video-play-btn:hover {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -31px;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 38px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-floating-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 52px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.bordered-card {
    background: var(--bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

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

.bordered-card::before {
    pointer-events: none;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 73px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.feature-icon-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: #6b7280;
}

.service-card {
    overflow: hidden;
}

.service-card .row {
    margin: -2rem;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    color: #fff;
}

.stats-wrapper {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.stats-title {
    color: #fff;
    margin-bottom: 1rem;
}

.stats-text {
    color: rgba(255, 255, 255, 0.7);
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card .stat-icon {
    width: 60px;
    height: 63px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-card .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.author-role {
    font-size: 0.875rem;
    color: #6b7280;
}

.team-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -53px;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 39px;
    height: 39px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.team-bio {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 4px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--navy);
    background: var(--bg);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    padding: 1.5rem;
    color: #6b7280;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
}

.cta-wrapper {
    padding: 3rem;
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-title {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.footer-main {
    background: var(--navy);
    color: #fff;
    padding-top: 5rem;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .site-name {
    color: #fff;
    font-size: 1.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

.footer-bottom {
    padding: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-link-sm {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1.5rem;
}

.footer-link-sm:hover {
    color: var(--accent);
}

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    padding: 180px 0 101px;
    color: #fff;
}

.page-hero-sm {
    padding: 150px 0 78px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-image {
    border-radius: 14px;
    box-shadow: 0 22px 52px -10px rgba(0, 0, 0, 0.25);
}

.about-image {
    border-radius: 11px;
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.15);
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 73px;
    height: 69px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-text {
    color: #6b7280;
}

.service-full-card {
    padding: 0;
    overflow: hidden;
}

.service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    height: 200px;
    object-fit: cover;
}

.service-icon {
    width: 61px;
    height: 57px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card-content {
    padding: 2rem;
}

.service-card-title {
    margin-bottom: 1rem;
}

.service-card-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #6b7280;
}

.service-features i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.process-card {
    padding: 2rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-text {
    color: #6b7280;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info-title {
    margin-bottom: 1rem;
}

.contact-info-text {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 51px;
    background: var(--light-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-content p {
    margin: 0;
    color: #6b7280;
}

.contact-content a {
    color: var(--text);
}

.contact-form-wrapper {
    padding: 2.5rem;
}

.form-title {
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--navy);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-image-link {
    display: block;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: var(--navy);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.media-kit-section {
    padding: 78px 0;
}

.media-kit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.media-kit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 11px rgba(0, 0, 0, 0.05);
}

.media-kit-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.press-list {
    padding: 0;
}

.press-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.press-item:last-child {
    border-bottom: none;
}

.press-date {
    color: #6b7280;
    font-size: 0.875rem;
    white-space: nowrap;
}

.press-content {
    flex: 1;
}

.press-title {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.press-source {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.article-page {
    padding-top: 82px;
}

.article-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    padding: 120px 0 78px;
    color: #fff;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-meta span {
    font-size: 0.875rem;
}

.article-category {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.article-date,
.article-read-time {
    color: rgba(255, 255, 255, 0.7);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.article-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info .author-name {
    display: block;
    font-weight: 600;
}

.author-info .author-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-featured-image {
    margin-top: -57px;
    margin-bottom: 3rem;
}

.featured-image {
    border-radius: 9px;
    box-shadow: 0 27px 51px -15px rgba(0, 0, 0, 0.25);
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-body p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
}

.article-quote p {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.article-quote cite {
    color: #6b7280;
    font-style: normal;
}

.article-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-list li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-weight: 600;
    color: var(--navy);
}

.tag {
    background: var(--light-bg);
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 52px;
    font-size: 0.875rem;
}

.tag:hover {
    background: var(--primary);
    color: #fff;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.share-label {
    font-weight: 600;
    color: var(--navy);
}

.share-link {
    width: 38px;
    height: 42px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.share-link:hover {
    background: var(--primary);
    color: #fff;
}

.legal-content {
    padding: 78px 0;
}

.legal-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-body p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-body li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.legal-update {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

.service-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    padding: 150px 0 97px;
    color: #fff;
}

.service-hero-image {
    border-radius: 12px;
    box-shadow: 0 23px 48px -15px rgba(0, 0, 0, 0.25);
}

.crisis-hotline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(220, 38, 38, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.crisis-hotline i {
    color: var(--accent);
    font-size: 1.5rem;
}

.crisis-hotline span {
    color: rgba(255, 255, 255, 0.8);
}

.crisis-hotline a {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.crisis-type-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
}

.crisis-type-icon {
    width: 62px;
    height: 57px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crisis-type-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.crisis-type-title {
    margin-bottom: 0.5rem;
}

.crisis-type-text {
    color: #6b7280;
    margin: 0;
}

.benefit-card,
.program-card {
    text-align: center;
}

.benefit-icon {
    width: 68px;
    height: 69px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #6b7280;
}

.program-card {
    position: relative;
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 53px;
    font-size: 0.75rem;
    font-weight: 600;
}

.program-featured {
    border: 2px solid var(--primary);
}

.program-header {
    margin-bottom: 1.5rem;
}

.program-duration {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.program-title {
    margin-top: 0.5rem;
}

.program-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.program-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.program-includes li {
    padding: 0.5rem 0;
    color: #6b7280;
}

.program-includes i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.trainer-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.trainer-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.trainer-info {
    padding: 1.5rem;
}

.trainer-name {
    margin-bottom: 0.25rem;
}

.trainer-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.trainer-bio {
    color: #6b7280;
    margin: 0;
}

.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 51px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-featured {
    border: 2px solid var(--primary);
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-price {
    margin-top: 1rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
}

.pricing-price .period {
    color: #6b7280;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #4b5563;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.distribution-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.dist-stat {
    text-align: center;
}

.dist-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.dist-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.case-study-card {
    padding: 0;
    overflow: hidden;
}

.case-study-image {
    position: relative;
}

.case-study-image img {
    height: 250px;
    object-fit: cover;
}

.case-study-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.case-study-content {
    padding: 2rem;
}

.case-study-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.case-study-client {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.case-study-results {
    display: flex;
    gap: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.result-label {
    color: #6b7280;
    font-size: 0.75rem;
}

.client-logo-wrapper {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.client-logo {
    width: 100%;
    height: 63px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.comparison-table {
    background: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    vertical-align: middle;
}

.comparison-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

.featured-column {
    background: rgba(220, 38, 38, 0.05) !important;
}

@media (max-width: 991.95px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-floating-card {
        left: 9px;
        bottom: 12px;
    }

    .section-padding {
        padding: 83px 0;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.101px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .section-title {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 140px 0 62px;
    }

    .service-hero {
        padding: 140px 0 63px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }

    .distribution-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .crisis-hotline {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .media-kit-features {
        grid-template-columns: 1fr;
    }
}
