* { box-sizing: border-box; }

:root {
    --primary-purple: #6a1b9a;
    --dark-purple: #4a148c;
    --black: #000000;
    --dark-bg: #121212;
    --light-text: #ffffff;
    --muted-text: #b39ddb;
}

body {
    background-color: var(--black);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.bg-purple-dark {
    background: linear-gradient(135deg, #2e004f 0%, #000000 100%);
}

.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 15px;
}

.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('visuals/media/hero-background_331.jpg') no-repeat center center/cover;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-section h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: clamp(1rem, 4vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
}

.scroll-down {
    color: var(--light-text);
    animation: bounce 2s infinite;
    margin-top: 40px;
}

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

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

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

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-card i {
    color: var(--primary-purple);
}

.service-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.3);
}

.service-img-container {
    height: 300px;
    overflow: hidden;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--muted-text);
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.process-step {
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(106, 27, 154, 0.2);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-step h4, .process-step p {
    position: relative;
    z-index: 2;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-purple);
    color: white;
}

.accordion-button::after {
    filter: invert(1);
}

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

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

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

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

.modal-content {
    border: 1px solid var(--primary-purple);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 100px 0;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-img-container {
        height: 250px;
    }
}

@media (max-width: 1100px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}/* Main container padding */
.infoGuardBlock {
    padding: 30px 20px 0 20px; /* Top and sides padding */
    line-height: 1.6;
    color: #fff;
}

/* Headings with moderate font sizes */
.infoGuardBlock h1 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.infoGuardBlock h2 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.infoGuardBlock h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.infoGuardBlock h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.infoGuardBlock h5 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraph styles */
.infoGuardBlock p {
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 0;
}

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

.infoGuardBlock li {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Remove margin from the last element to avoid double spacing */
.infoGuardBlock > *:last-child {
    margin-bottom: 0;
}


.navbar-brand,
.footer-brand{
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand h2,
.footer-brand h2{
    font-size: clamp(16px,2.5vw,18px) !important;
    margin: 0;
}

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


.footer-brand img{
    margin: 0 !important;
}


.footer-brand{
    padding: 20px 10px;
}


#problem, #benefits, #services, #process, #faq, footer, .dopHidden{
    overflow: hidden !important;
}