/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #FBF9F4; /* Relaxing background color */
    display: flex;
    justify-content: center;
    padding: 40px 0; /* Padding above and below the container */
}

/* Container for the whole layout */
.container {
    width: 70%; /* 70% of the page width */
    border: 2px solid black; /* Border around the entire container */
    box-sizing: border-box; /* Ensures padding and border are included in width/height */
}

/* Top Part with Background Image */
.top-section {
    background-image: url('../img/background.webp'); /* Replace with the correct image path */
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    border-bottom: 2px solid black;
}

/* Hamburger Menu Style */
.hamburger-menu {
    display: none; /* Hidden by default */
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

/* Links */
.links {
    display: flex;
    padding: 0 20px; /* No padding at the top and bottom */
    align-items: center;
    padding-left: 40px;
    border-bottom: 2px solid black;
	
}

/* Hide links by default on small screens */
.links a {
	
    padding-right: 3em;
    color: #A80000;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 1px 1px 4px rgba(51, 51, 51, 0.5);
}

.links a:hover {
    color: #CC0000;
}

/* Two Column Layout */
.main-content {
    display: flex;
    padding: 0 20px; /* No padding at the top and bottom */
}

.main-content2 {
    display: flex;
}

.column-left {
    width: 80%; 
    padding: 20px;
    border-right: 2px solid black;
    border-bottom: none; /* Ensure the vertical line touches the horizontal lines */
}

.column-left3 {
    width: 70%; 
    border-right: 2px solid black;
    border-bottom: none; /* Ensure the vertical line touches the horizontal lines */
}

.column-right {
    width: 30%; 
    padding: 20px; /* No padding at the top and bottom */}

.column-left2 {
    width: 65%; 
    padding: 20px;
    border-right: 2px solid black;
    border-bottom: none; /* Ensure the vertical line touches the horizontal lines */
}

.svg-box {
		align-items: flex-start; 
}

.svg {
	width: 110%;
	}

/* Content Styling */
h1, h2, h3, h4, h5 {
    color: #333;
    margin-top: 10px; /* Adjust the top margin to reduce space above the heading */
    margin-bottom: 10px; /* Adjust the bottom margin to reduce space below the heading */
}


h2, h3, h4 {
    margin-top: 0px; /* Adjust the top margin to reduce space above the heading */
    margin-bottom: 0px; /* Adjust the bottom margin to reduce space below the heading */
}

h4 {
	font-style: italic;
	}

h5 {
	margin-top: 5px; /* Adjust the top margin to reduce space above the heading */
    margin-bottom: 5px; /* Adjust the bottom margin to reduce space below the heading */
}
p {
    margin-bottom: 30px;
}

ul {

    list-style-type: disc;
}

.picture {
    width: 100%;
	height:auto;
}

.picture2 {
    width: 100%;
	height: 100%;
}

.dropdown {
	position: relative;
	display: inline-block:
}

.drodown-link {
	text-decoration: none;
	color: #A80000;
	font-size: 18px;
	text-shadow: 1px 1px 4px rgba(51, 51, 51, 0.5);
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #FBF9F4;
	border: 1px solid #A80000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 10;
	min-width: 200px;
}

.dropdown-menu a {
	display: block;
	padding: 10px 15px;
	color: #A80000;
	text-decoration: none;
	font-size: 16px;
	white-space: nowrap;
}

.dropdown-menu a:hover {
	background-color: #CC0000;
	color: white;
}

#mindmap {
    width: 100%;
    height: 1000px; /* or whatever height you want */
    border: 1px solid #ccc; /* optional, for debugging */
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .container {
        width: 90%;
    }

    .column-left, .column-right {
        width: 100%;
        border-right: none;
    }

    .main-content {
        flex-direction: column;
    }

    .links a {
        padding-right: 2em;
        font-size: 16px;

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }
}

@media screen and (max-width: 600px) {
    .container {
        width: 100%;
        border: none;
    }

    .hamburger-menu {
        display: block; /* Show hamburger on small screens */
    }

    .links {
        display: none; /* Hide links by default */
        flex-direction: column;
    }

    .links a {
        padding: 10px 0;
        text-align: center;
    }

    .main-content {
        padding: 10px;
    }

    .column-left, .column-right {
        padding: 10px;
    }

    .top-section {
        height: 200px;
    }

    .links.show {
        display: flex; /* Show links when the menu is toggled */
    }
}
