/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Importing Font Awesome CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Non-critical styles */

/* Table of Contents */
.toc {
            background: white;
            padding: 1rem;
            margin-bottom: 2rem;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

.toc h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.toc ol {
    padding-left: 1.5rem;
}

/* Content sections */
.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Two-column layout */
.two-column {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 20px;
            padding: 0 15px;
        }
        .column {
            flex-basis: 48%;
        }

/* Footer */
footer {
            background: #f4f4f4;
            padding: 1rem 0;
            text-align: center;
        }

/* Cookie consent */
/* Floating call button styles */
        .floating-call {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #3498db;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .floating-call:hover {
            background: #2980b9;
        }
        
       /* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f7f7f7;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  font-size: 14px;
}

.cookie-banner p {
  margin: 0 0 10px;
}

.cookie-buttons {
  text-align: right;
}

.cookie-buttons .btn {
  margin-left: 10px;
}

/* Cookie Modal Styles */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.cookie-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border-radius: 5px;
}

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-modal h2 {
  margin-top: 0;
}

.cookie-modal label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.cookie-modal-buttons {
  text-align: right;
}

.cookie-modal-buttons .btn {
  margin-top: 10px;
}

/* Revoke Consent Link */
#cookie-revoke {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 1000;
  font-size: 14px;
}

#cookie-revoke a {
  color: #007BFF;
  text-decoration: underline;
}

/* Button Styles */
.btn {
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

.btn-primary {
  background-color: #007BFF;
  color: #fff;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-link {
  background-color: transparent;
  color: #007BFF;
  text-decoration: underline;
}

.btn:hover {
  opacity: 0.9;
}

        
        
        
        
        
        
        
        
/* Responsive design */
 /* Responsive styles */
        @media (max-width: 768px) {
            .navbar-container {
                flex-wrap: nowrap;
            }
            .logo {
                flex-basis: auto;
            }
            
            .navbar-toggler {
                display: block;
            }
            .navbar-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                box-shadow: 0 2px 4px rgba(0,0,0,.1);
            }
            .navbar-nav.show {
                display: flex;
            }
            .nav-item {
                margin: 0;
            }
            .nav-link {
                display: block;
                padding: 0.75rem 1rem;
                border-top: 1px solid #f8f9fa;
            }
            .column {
                flex-basis: 100%;
                padding: 0 15px;
            }
        }