body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bs-primary: #007bff;
    --bs-secondary: #6c757d;
    --bs-dark: #212529;
    --bs-light: #f8f9fa;
    --bs-info: #17a2b8;
    --bs-danger: #dc3545;
    --bs-white: #ffffff;
    --bs-body-color: #333;
    --bs-body-bg: #f8f9fa;

    --lackope-primary: #007bff;
    --lackope-secondary: #343a40;
    --lackope-dark: #1a1a2e;
    --lackope-light-grey: #e9ecef;
    --lackope-text-light: #f8f9fa;
    --lackope-text-dark: #212529;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--lackope-text-dark);
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: var(--bs-white);
}

.header {
    background-color: var(--lackope-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-white);
}

.navbar-nav .nav-link {
    color: var(--bs-white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--lackope-primary);
}

.btn-primary {
    background-color: var(--lackope-primary);
    border-color: var(--lackope-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-light {
    border-color: var(--bs-white);
    color: var(--bs-white);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

.offcanvas {
    background-color: var(--lackope-dark);
}

.offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .offcanvas-title {
    color: var(--bs-white);
}

.offcanvas .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.hero-section {
    min-height: 80vh;
    background-image: url('assets/content/web-security-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-overlay {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9));
    z-index: 0;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-feature i {
    color: var(--lackope-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--lackope-primary);
    border-radius: 2px;
}

.text-white .section-title::after {
    background-color: var(--bs-white);
}

.problem-card {
    background-color: var(--bs-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.service-card {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.service-card-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    color: var(--bs-white);
}

.service-card .price {
    color: var(--lackope-light-grey);
}

.order-service-btn {
    text-decoration: none;
}

.process-step {
    background-color: var(--bs-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--lackope-light-grey);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.advantage-card i {
    color: var(--bs-white);
}

.case-card {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.case-card-img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.target-audience-card {
    background-color: var(--lackope-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.target-audience-card i {
    color: var(--lackope-primary);
}

#about-section img {
    max-height: 450px;
    object-fit: cover;
}

.team-member .team-avatar {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.team-member .card-body {
    padding: 1.5rem;
}

.contact-form, .contact-info {
    background-color: var(--lackope-secondary);
}

.contact-form .form-control, .contact-form .form-select, .contact-form .form-control:focus, .contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--bs-white);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-label {
    color: var(--bs-white);
}

.email-break-all {
    word-break: break-all;
}

.footer {
    background-color: var(--lackope-dark);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer .logo-img {
    height: 35px;
}

.footer .site-name {
    font-size: 1.3rem;
    color: var(--bs-white);
}

.footer .list-inline-item a {
    font-weight: 400;
}

.footer .list-inline-item a:hover {
    color: var(--lackope-primary) !important;
}

.cookie-banner {
    z-index: 1040;
    background-color: var(--lackope-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner a {
    font-weight: 600;
}

#cookieSettingsModal {
    z-index: 1060;
}

#cookieSettingsModal .modal-content {
    background-color: var(--lackope-dark);
}

#cookieSettingsModal .form-check-label {
    color: var(--bs-white);
}

#cookieSettingsModal .form-check-label strong {
    color: var(--lackope-primary);
}

#cookieSettingsModal .form-check-input:checked {
    background-color: var(--lackope-primary);
    border-color: var(--lackope-primary);
}

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.modal-content {
    background-color: var(--lackope-dark);
    color: var(--bs-white);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--bs-white);
}

.modal-body .img-fluid {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .navbar-brand .site-name {
        font-size: 1.6rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .navbar-brand .site-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: 70vh;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
    .section-title {
        font-size: 1.6rem !important;
    }
    .navbar-brand .site-name {
        font-size: 0.9rem;
        max-width: 120px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        margin-bottom: 1rem;
    }
    .cookie-banner .d-flex {
        width: 100%;
    }
}

.btn {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    text-decoration: none !important;
}/* Styles for the main content zone container */
.privacyNestZone {
    padding-top: 40px; /* Top padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    max-width: 800px; /* Limits the content width for better readability on large screens */
    margin-left: auto; /* Centers the content zone horizontally */
    margin-right: auto; /* Centers the content zone horizontally */
}

/* Heading 1 styles */
.privacyNestZone h1 {
    font-size: 2.25rem; /* Approx. 36px if base is 16px */
    font-weight: 700; /* Bold font weight */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.75em; /* Space below the heading */
    line-height: 1.2; /* Line height for better readability */
}

/* Heading 2 styles */
.privacyNestZone h2 {
    font-size: 1.75rem; /* Approx. 28px */
    font-weight: 700;
    margin-top: 1.25em;
    margin-bottom: 0.75em;
    line-height: 1.3;
}

/* Heading 3 styles */
.privacyNestZone h3 {
    font-size: 1.5rem; /* Approx. 24px */
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0.6em;
    line-height: 1.4;
}

/* Heading 4 styles */
.privacyNestZone h4 {
    font-size: 1.25rem; /* Approx. 20px */
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

/* Heading 5 styles */
.privacyNestZone h5 {
    font-size: 1.125rem; /* Approx. 18px */
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

/* Paragraph styles */
.privacyNestZone p {
    font-size: 1rem; /* Base font size, approx. 16px */
    line-height: 1.6; /* Optimal line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.privacyNestZone ul {
    list-style-type: disc; /* Default bullet point style */
    padding-left: 1.5em; /* Indent for the list items */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
}

/* List item styles */
.privacyNestZone li {
    font-size: 1rem; /* Inherits or explicitly sets base font size */
    line-height: 1.6; /* Ensures consistent line height with paragraphs */
    margin-bottom: 0.5em; /* Space between individual list items */
}
