:root {
	--primary-burgundy: #4a0404;
	--dark-burgundy: #2d0a0a;
	--accent-red: #ff4d4d;
	--text-light: #f8f9fa;
	--card-bg: #3d0c0c;
	--transition-speed: 0.8s;
}

body {
	background-color: var(--dark-burgundy);
	color: var(--text-light);
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
}

.navbar {
	background-color: rgba(45, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
}

.navbar-brand span {
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--text-light);
}

.nav-link {
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 600;
	transition: color 0.3s;
}

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

#hero {
	min-height: 100vh;
	background: linear-gradient(rgba(45, 10, 10, 0.7), rgba(45, 10, 10, 0.7)), url('assets/content/hero-creator-background.png');
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero-logo {
	width: 120px;
	height: auto;
	filter: drop-shadow(0 0 20px rgba(255, 77, 77, 0.5));
}

.sticky-cta {
	position: sticky;
	top: 80px;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 10px 30px rgba(255, 77, 77, 0.3);
}

.sticky-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 77, 77, 0.5);
}

.scroll-cue {
	position: absolute;
	bottom: 30px;
	font-size: 2rem;
	animation: bounce 2s infinite;
	color: var(--accent-red);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-10px);}
	60% {transform: translateY(-5px);}
}

.section-title {
	font-weight: 800;
	background: linear-gradient(45deg, #fff, var(--accent-red));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.check-item {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}

.check-item i {
	color: #00f2ea;
	font-size: 1.5rem;
}

.slogan-box {
	border: 1px solid rgba(255, 77, 77, 0.3);
	background: rgba(255, 77, 77, 0.05);
	border-radius: 15px;
}

.bg-dark-variant {
	background-color: #240808;
}

.service-card {
	background-color: var(--card-bg);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.4s, border-color 0.4s;
	position: relative;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-red);
}

.service-card::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	background: rgba(255, 77, 77, 0.1);
	transform: rotate(45deg);
	transition: 0.4s;
}

.service-icon {
	font-size: 3rem;
	color: var(--accent-red);
}

.price-tag .old-price {
	text-decoration: line-through;
	color: rgba(255, 255, 255, 0.5);
	margin-right: 10px;
}

.price-tag .new-price {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--accent-red);
}

.calc-card {
	background: linear-gradient(135deg, var(--card-bg), #5a0a0a);
	border-radius: 30px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.industry-col {
	height: 400px;
	background-size: cover;
	background-position: center;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.industry-overlay {
	position: absolute;
	inset: 0;
	background: rgba(45, 10, 10, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.4s;
}

.industry-col:hover .industry-overlay {
	background: rgba(45, 10, 10, 0.6);
}

.industry-col h3 {
	transition: transform 0.4s;
}

.industry-col:hover h3 {
	transform: scale(1.2);
}

.timeline-container {
	position: relative;
	padding: 40px 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	width: 2px;
	height: 0;
	background: var(--accent-red);
	transform: translateX(-50%);
	transition: height 1s ease-out;
}

.timeline-item {
	margin-bottom: 60px;
	width: 50%;
	position: relative;
}

.timeline-item.left { padding-right: 50px; text-align: right; margin-left: 0; }
.timeline-item.right { padding-left: 50px; text-align: left; margin-left: 50%; }

.timeline-icon {
	position: absolute;
	top: 0;
	width: 40px;
	height: 40px;
	background: var(--accent-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.left .timeline-icon { right: -20px; }
.right .timeline-icon { left: -20px; }

.accordion-button {
	background-color: var(--card-bg);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button:not(.collapsed) {
	background-color: var(--primary-burgundy);
	color: var(--accent-red);
	box-shadow: none;
}

footer {
	background-color: #1a0505;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(26, 5, 5, 0.98);
	border-top: 2px solid var(--accent-red);
	z-index: 9999;
	display: none;
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all var(--transition-speed) ease-out;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 991px) {
	.timeline-line { left: 20px; }
	.timeline-item { width: 100%; margin-left: 0 !important; padding-left: 50px !important; text-align: left !important; }
	.left .timeline-icon, .right .timeline-icon { left: 0; }
	.display-3 { font-size: 2.5rem; }
}

@media (max-width: 767px) {
	.display-3 { font-size: 1.8rem; }
	.section-title { font-size: 1.5rem; }
}/* Container padding and base text color */
.complianceCoreSlot {
    padding: 30px 20px 0 20px;
    color: #ffffff; /* Dark grey for better readability on light backgrounds */
    line-height: 1.6;
    font-family: sans-serif;
}

/* Heading styles with moderate sizes */
.complianceCoreSlot h1 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #ffffff;
}

.complianceCoreSlot h2 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #ffffff;
}

.complianceCoreSlot h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 600;
}

.complianceCoreSlot h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.complianceCoreSlot h5 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Paragraph styles */
.complianceCoreSlot p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* List styles */
.complianceCoreSlot ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.complianceCoreSlot li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Last element margin reset */
.complianceCoreSlot *:last-child {
    margin-bottom: 0;
}
section {
	overflow: hidden;
}
.accordion-body {
	color: #fff !important;
}
.navbar-toggler {
	background-color: #fff;
}
@media (max-width:576px) {
	.navbar-brand span {
		font-size: 12px;
	}
}
input::placeholder {
	color: #b3b3b3 !important;
}
textarea::placeholder {
	color: #b3b3b3 !important;
}
.accordion-button::after {
  filter: brightness(0) invert(1);  
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); 
}