

:root {
    --primary-color: rgb(189, 53, 46);
    --primary-dark: rgb(150, 40, 35);
    --light-bg: rgb(245, 245, 245);
    --dark-text: #2c3e50;
    --white: #ffffff;
    --border-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}


.top-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-header .container-fluid {
    max-width: 1400px;
}

.top-header i {
    margin-right: 8px;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase ;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}


.hero-section {
    background: url('images/2148332004.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, white 0%, white 100%);
    opacity: 0.45; 
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img {
    box-shadow: 0 20px 40px rgba(189, 53, 46, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px) scale(1.02);
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 53, 46, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 53, 46, 0.3);
}


.services-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover::after {
    transform: translateX(5px);
}


.about-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.about-image {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.about-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.feature-item i {
    font-size: 1.5rem;
}


.stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--white), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}


.cta-section {
    background: linear-gradient(135deg, var(--dark-text), var(--dark-text));
    color: var(--white);
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
}


.service-detail-card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.2);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #6c757d;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}


.service-detail {
    padding: 80px 0;
}

.service-content {
    background: var(--white);
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.service-content h2 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 25px;
}

.service-image {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

.process-step {
    background: var(--light-bg);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    color: #6c757d;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}


.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 15px 40px rgba(189, 53, 46, 0.15);
}

.sidebar-widget h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-widget h4 {
    color: var(--white);
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-widget .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    width: 100%;
}

.cta-widget .btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 12px;
}

.related-services a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.related-services a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}


.framework-card {
    background: var(--light-bg);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.framework-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.framework-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.framework-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.tool-card {
    background: var(--light-bg);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.tool-card h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.tool-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


.format-card {
    background: var(--light-bg);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.format-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.format-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.format-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(189, 53, 46, 0.25);
}

.contact-info {
    background: var(--light-bg);
    padding: 40px 30px;
    height: fit-content;
}

.contact-info h3 {
    color: var(--dark-text);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.contact-details p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.cta-box h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 20px;
}


.contact-feature {
    padding: 20px;
}

.contact-feature h4 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.contact-feature p {
    color: #6c757d;
    line-height: 1.6;
}


.about-story-img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-story-img:hover {
    transform: scale(1.05);
}

.value-card {
    background: var(--white);
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
}

.team-card {
    background: var(--white);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.15);
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-card h4 {
    color: var(--dark-text);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #6c757d;
    line-height: 1.6;
}


.success-story-card {
    background: var(--white);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.2);
}

.success-story-card h4 {
    color: var(--dark-text);
    margin-bottom: 20px;
}

.story-meta {
    margin-bottom: 20px;
}

.story-meta span {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 5px;
}

.results {
    background: var(--light-bg);
    padding: 20px;
    margin-top: 20px;
}

.results h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.results ul {
    margin: 0;
    padding-left: 20px;
}

.results li {
    color: #6c757d;
    margin-bottom: 8px;
}


.client-logo {
    background: var(--light-bg);
    padding: 20px;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.client-logo:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}


.newsletter-section {
   
    background: linear-gradient(rgba(150, 40, 35, 0.6), rgba(150, 40, 35, 0.6)),
                url('images/2148792956.jpg') center center / cover no-repeat;
     
    color: var(--white);
    padding: 60px 0;
}

.newsletter-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form .form-control {
    padding: 15px 20px;
    font-size: 1.1rem;
    border: none;
}

.newsletter-form .btn {
    padding: 15px 30px;
    font-weight: 600;
}

.footer-main {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-brand img {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-main h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
   background: var(--dark-text);
   border-top: 1px solid white;
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}


.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-header h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}


.legal-document {
    background: var(--white);
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.legal-document h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.legal-document h3 {
    color: var(--dark-text);
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-document h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-document p {
    color: #6c757d;
    margin-bottom: 20px;
}

.legal-document ul {
    color: #6c757d;
    margin-bottom: 20px;
}

.legal-document ul li {
    margin-bottom: 8px;
}


.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.testimonial-company {
    color: var(--primary-color);
    font-size: 0.9rem;
}


.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.15);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}


.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1;
}

.error-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.error-message {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.suggestion-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.suggestion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.15);
}

.suggestion-card h5 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.suggestion-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.search-section {
    background: var(--light-bg);
    padding: 40px;
}

.search-section h4 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.popular-searches .badge {
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-searches .badge:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.help-card {
    background: var(--white);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.15);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    transform: scale(1.1) rotate(5deg);
}

.help-card h5 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.help-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        margin-top: 10px;
    }
    
    .service-content {
        padding: 30px 20px;
    }
    
    .service-sidebar {
        position: static;
        top: auto;
        margin-top: 30px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .search-section {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .top-header {
        text-align: center;
    }
    
    .top-header .row > div {
        margin-bottom: 5px;
    }
    
    .hero-content {
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .about-content {
        text-align: center;
        margin-top: 30px;
    }
}


.service-card,
.hero-img,
.about-image {
    will-change: transform;
}

.btn-primary::before,
.service-card::before {
    will-change: transform, left;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


.service-detail {
    padding: 80px 0;
}

.service-content {
    background: var(--white);
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.service-content h2 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 25px;
}

.service-image {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

.process-step {
    background: var(--light-bg);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    color: #6c757d;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}


.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 15px 40px rgba(189, 53, 46, 0.15);
}

.sidebar-widget h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-widget h4 {
    color: var(--white);
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-widget .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    width: 100%;
}

.cta-widget .btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 12px;
}

.related-services a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.related-services a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}


.framework-card {
    background: var(--light-bg);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.framework-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.framework-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.framework-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


.tool-card {
    background: var(--light-bg);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.tool-card h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.tool-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


.format-card {
    background: var(--light-bg);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.format-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(189, 53, 46, 0.1);
    transform: translateY(-5px);
}

.format-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.format-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


.success-story-card {
    background: var(--white);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.2);
}

.success-story-card h4 {
    color: var(--dark-text);
    margin-bottom: 20px;
}

.story-meta {
    margin-bottom: 20px;
}

.story-meta span {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 5px;
}

.results {
    background: var(--light-bg);
    padding: 20px;
    margin-top: 20px;
}

.results h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.results ul {
    margin: 0;
    padding-left: 20px;
}

.results li {
    color: #6c757d;
    margin-bottom: 8px;
}


.client-logo {
    background: var(--light-bg);
    padding: 20px;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.client-logo:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}


.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1;
}

.error-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.error-message {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.suggestion-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.suggestion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.15);
}

.suggestion-card h5 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.suggestion-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.search-section {
    background: var(--light-bg);
    padding: 40px;
}

.search-section h4 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.popular-searches .badge {
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-searches .badge:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.help-card {
    background: var(--white);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(189, 53, 46, 0.15);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    transform: scale(1.1) rotate(5deg);
}

.help-card h5 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.help-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}


.contact-feature {
    padding: 20px;
}

.contact-feature h4 {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.contact-feature p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-content {
        padding: 30px 20px;
    }
    
    .service-sidebar {
        position: static;
        top: auto;
        margin-top: 30px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .search-section {
        padding: 30px 20px;
    }
}

.section-title-1{
    font-size: 1.5rem;
}
.section-subtitle-1{
 font-size: 0.8rem;
}


