/* 
===================================
Table of Contents
===================================
1. Base Styles & Typography
2. Layout & Grid
3. Header & Navigation
4. Hero Section
5. Content Sections
6. Cards & Info Boxes
7. Form Elements
8. Animations & Effects
9. Cookie Consent
10. Footer
11. Responsive Styles
12. Utility Classes
===================================
*/

/* 
===================================
1. Base Styles & Typography
===================================
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1abc9c;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 
===================================
2. Layout & Grid
===================================
*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.bg-light {
    background-color: #ecf0f1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* 
===================================
3. Header & Navigation
===================================
*/

header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 0;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.desktop-nav li {
    margin: 0 15px;
}

.desktop-nav a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav li.active a::after {
    width: 100%;
}

.desktop-nav li.active a {
    color: #3498db;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #2c3e50;
    z-index: 1100;
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li.active a {
    color: #3498db;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: none;
}

.body-overlay.active {
    display: block;
}

/* 
===================================
4. Hero Section
===================================
*/

.hero-section {
    position: relative;
    padding: 200px 0 120px;
    background-color: #2c3e50;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-header {
    position: relative;
    padding: 150px 0 80px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.simple-header {
    background-color: #2c3e50;
    padding: 120px 0 50px;
}

/* 
===================================
5. Content Sections
===================================
*/

.intro-section .section-header {
    margin-bottom: 30px;
}

.benefits-section {
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.case-studies-section {
    position: relative;
    overflow: hidden;
}

.carousel {
    margin-bottom: 30px;
}

.carousel-cell {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .carousel-cell {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .carousel-cell {
        width: 33.333%;
    }
}

.contact-form-section {
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-section {
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.resources-section {
    position: relative;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.final-cta-section {
    position: relative;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.trends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .trends-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.topics-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .topics-container {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .mission-content {
        flex-direction: row;
    }
    
    .mission-text {
        flex: 1;
    }
    
    .mission-values {
        flex: 1;
    }
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .mission-values {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .vision-content {
        flex-direction: row;
    }
    
    .vision-image {
        flex: 1;
    }
    
    .vision-text {
        flex: 1;
    }
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: #3498db;
}

.timeline-item {
    padding-left: 60px;
    position: relative;
    margin-bottom: 30px;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 1;
}

.timeline-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.future-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .future-content {
        flex-direction: row;
    }
    
    .future-text {
        flex: 1;
    }
    
    .future-image {
        flex: 1;
    }
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    height: 100%;
    width: 100%;
    border: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.policy-section h3 {
    margin-top: 30px;
    font-size: 1.3rem;
}

.cookie-table {
    margin-bottom: 30px;
    overflow-x: auto;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* 
===================================
6. Cards & Info Boxes
===================================
*/

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.info-card img {
    margin-bottom: 20px;
    border-radius: 8px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.benefit-item img {
    margin-bottom: 20px;
    border-radius: 8px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.case-content {
    padding: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item img {
    border-radius: 8px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .info-item {
        flex-direction: column;
        align-items: center;
    }
    
    .info-item:nth-child(even) {
        flex-direction: column;
    }
    
    .info-item img {
        width: 50%;
        height: 300px;
    }
}

.resource-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 2rem;
    color: #1abc9c;
    margin-bottom: 15px;
}

.resource-link {
    margin-top: auto;
    display: inline-block;
    padding-top: 10px;
    font-weight: 500;
}

.advice-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advice-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 20px;
}

.trend-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trend-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.topic-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.value-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 15px;
}

.approach-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.approach-icon {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 15px;
}

.commitment-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.commitment-icon {
    font-size: 2rem;
    color: #1abc9c;
    margin-bottom: 15px;
}

.contact-info-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.contact-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

/* 
===================================
7. Form Elements
===================================
*/

.button {
    display: inline-block;
    padding: 0px 30px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.button:hover {
    background-color: #d6dbdf;
    color: #2c3e50;
}

.button-primary {
    background-color: #3498db;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d6dbdf;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.iti {
    width: 100%;
}

/* 
===================================
8. Animations & Effects
===================================
*/

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slideUp {
    animation: slideUp 0.8s ease forwards;
}

/* 
===================================
9. Cookie Consent
===================================
*/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    z-index: 1200;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.cookie-categories {
    margin: 20px 0;
}

.cookie-category {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-category label span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.cookie-category p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-links {
    font-size: 0.9rem;
}

.cookie-links a {
    color: #3498db;
}

/* 
===================================
10. Footer
===================================
*/

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-info h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #3498db;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    border-radius: 0;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* 
===================================
11. Responsive Styles
===================================
*/

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .card-container,
    .benefits-grid,
    .resources-grid,
    .advice-grid,
    .approach-grid,
    .commitment-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
}

/* 
===================================
12. Utility Classes
===================================
*/

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.p-0 {
    padding: 0 !important;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}