:root {


    --bg-dark: #0f0f0f;


    --bg-blue-deep: #0a192f;


    --magenta: #e91e63;


    --magenta-hover: #c2185b;


    --text-light: #f8f9fa;


}


body {


    font-family: 'Inter', sans-serif;


    background-color: var(--bg-dark);


    color: var(--text-light);


    overflow-x: hidden;


    box-sizing: border-box;


}


h1, h2, h3, h4, h5, h6 {


    color: var(--text-light);


}


.bg-dark-blue {


    background-color: var(--bg-blue-deep);


}


.text-magenta {


    color: var(--magenta) !important;


}


.btn-magenta {


    background-color: var(--magenta);


    color: white;


    border: none;


    transition: all 0.3s ease;


}


.btn-magenta:hover {


    background-color: var(--magenta-hover);


    color: white;


    transform: translateY(-2px);


}


.navbar {


    background: rgba(10, 25, 47, 0.95);


    backdrop-filter: blur(10px);


    padding: 1rem 0;


    transition: all 0.3s ease;


}


.navbar-brand .brand-text {


    font-weight: 800;


    letter-spacing: -1px;


    font-size: 1.5rem;


}


.nav-link {


    font-weight: 600;


    margin-left: 1.5rem;


    transition: color 0.3s ease;


}


.nav-link:hover {


    color: var(--magenta) !important;


}


.hero-section {


    position: relative;


    background: url('assets/media/construction-site-hero.png') center/cover no-repeat;


    background-attachment: fixed;


}


.hero-overlay {


    position: absolute;


    top: 0; left: 0; width: 100%; height: 100%;


    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(233, 30, 99, 0.2) 100%);


}


.scroll-indicator {


    position: absolute;


    bottom: -90px;


    left: 50%;


    transform: translateX(-50%);


    margin-top: 2rem;


}


.bounce {


    animation: bounce 2s infinite;


    font-size: 2rem;


    color: var(--text-light);


}


@keyframes bounce {


    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}


    40% {transform: translateY(-10px);}


    60% {transform: translateY(-5px);}


}


.service-card {


    background: rgba(255, 255, 255, 0.03);


    transition: all 0.4s ease;


}


.service-card:hover {


    background: rgba(233, 30, 99, 0.1);


    border-color: var(--magenta) !important;


    transform: translateY(-10px);


}


.icon-box {


    width: 60px;


    height: 60px;


    background: linear-gradient(45deg, var(--magenta), #ff4081);


    border-radius: 50%;


    display: flex;


    align-items: center;


    justify-content: center;


    color: white;


}


.calc-wrapper {


    background: var(--bg-blue-deep);


    border: 1px solid rgba(255, 255, 255, 0.1);


}


.result-box {


    background: rgba(255, 255, 255, 0.05);


    border-left: 5px solid var(--magenta);


}


.price-card {


    background: rgba(255, 255, 255, 0.02);


    border: 1px solid rgba(255, 255, 255, 0.1);


    transition: all 0.3s ease;


}


.price-card.highlighted {


    border-color: var(--magenta);


    box-shadow: 0 0 30px rgba(233, 30, 99, 0.2);


}


.industry-card {


    height: 350px;


}


.industry-card img {


    width: 100%;


    height: 100%;


    object-fit: cover;


    transition: transform 0.5s ease;


}


.industry-overlay {


    position: absolute;


    top: 0; left: 0; width: 100%; height: 100%;


    background: rgba(10, 25, 47, 0.7);


    transition: background 0.3s ease;


}


.industry-card:hover img {


    transform: scale(1.1);


}


.industry-card:hover .industry-overlay {


    background: rgba(233, 30, 99, 0.4);


}


.step-number {


    font-size: 3rem;


    font-weight: 800;


    color: rgba(233, 30, 99, 0.2);


    line-height: 1;


}


.accordion-button {


    background: transparent !important;


    color: white !important;


    box-shadow: none !important;


    padding: 1.5rem;


}


.accordion-button:not(.collapsed) {


    color: var(--magenta) !important;


}


.accordion-button i {


    transition: transform 0.3s ease;


}


.accordion-button:not(.collapsed) i {


    transform: rotate(180deg);


}


.contact-form .form-control {


    background: rgba(255, 255, 255, 0.05);


    border: 1px solid rgba(255, 255, 255, 0.1);


    color: white;


    padding: 0.8rem 1.2rem;


}


.contact-form .form-control:focus {


    background: rgba(255, 255, 255, 0.08);


    border-color: var(--magenta);


    box-shadow: none;


}


footer {


    background: #050c16;


}


.footer-links a {


    color: rgba(255, 255, 255, 0.6);


    text-decoration: none;


    transition: color 0.3s ease;


    display: block;


    margin-bottom: 0.8rem;


}


.footer-links a:hover {


    color: var(--magenta);


}


.footer-legal a {


    color: rgba(255, 255, 255, 0.4);


    text-decoration: none;


    margin-left: 1rem;


}


.cookie-card {


    position: fixed;


    bottom: 20px;


    right: 20px;


    width: 350px;


    background: var(--bg-blue-deep);


    border: 1px solid rgba(255, 255, 255, 0.1);


    border-radius: 15px;


    z-index: 1050;


    display: none;


}


@media (max-width: 768px) {


    .navbar-brand .brand-text { font-size: 1rem; }


    h1 { font-size: 2rem !important; }


    .cookie-card { width: calc(100% - 40px); left: 20px; }


    .section-padding { padding: 3rem 0; }


}/* Main container spacing */
.infoGuardBlock {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

.infoGuardBlock h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.2;
}

.infoGuardBlock h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.infoGuardBlock h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Paragraph styles */
.infoGuardBlock p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.accordion-button::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-item {
    color: #fff;
}
.form-control::placeholder {
    color: #dbd8d8;
}
section {
    overflow-x: hidden;
}