body,html{
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: white;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: 'Forum';
}
h1{
	display: flex;
	justify-content: center;
	padding: 16px 0;
	margin: 0;
	font-size: 48px;
	text-transform: uppercase;
}
h2{
	font-size: 28px;
	margin-top: 0;
	margin-bottom: 24px;
}
p {
	font-size: 22px;
	margin: 16px 0;
	line-height: 1.5;
}
.globorga{
	position: relative;
	right: 0%;
	font-family: 'Forum';
}
.wrapper{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	font-family: 'Forum';
	margin: 32px 0;
	justify-content: center;
}
.wrapper .image-container {
	width: 400px;
}
.wrapper .image-container img{
	width: 100%;
	min-width: 250px;
	max-width: 400px;
	border-radius: 24px;
}

.info-container {
	display: flex;
	padding: 0 32px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
}

.info-container div{
	margin-inline: 16px;
}
.info-container .text{
	max-width: 600px;
	min-width: 400px;
	/* margin-left: 32px; */
}

.centered-content {
	justify-content: center !important;
	padding: 0 16px;
	margin-bottom: 24px;
}

.centered-content .text {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}

.info-container .image-container {
	width: 250px;
}

.info-container .image-container img {
	width: 100%;
	min-width: 250px;
	max-width: 400px;
	border-radius: 24px;
}

.docs-wrapper{
	display: flex;
	flex-direction: column;
	margin: 64px 0;
}
.docs-wrapper .header{
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}
.docs-wrapper h2{
	font-weight: 300;
	padding: 8px 32px;
	margin: 0;
	border: solid gray 3px;
	border-radius: 24px;
}
.docs-wrapper .image-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 32px;
	padding: 0 32px;
	flex-wrap: nowrap;
}
.docs-wrapper .image-container img {
	width: 25%;
	max-width: none;
	height: auto;
	border-radius: 16px;
	display: block;
}

h3 {
    font-size: 24px;
    margin: 16px 0;
    color: #2F5233;
}

.text ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.text ul li {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.text ul li strong {
    color: #2F5233;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        padding: 12px 0;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    p {
        font-size: 18px;
    }
    .wrapper .image-container {
        width: 100%;
    }
    .wrapper .image-container img {
        max-width: 100%;
        min-width: auto;
    }
    .info-container {
        flex-direction: column;
        padding: 0 16px;
        align-items: center;
    }
    .info-container .text {
        max-width: 100%;
        min-width: auto;
        text-align: center;
    }
    .info-container .image-container {
        width: 100%;
        max-width: 300px;
    }
    .info-container .image-container img {
        max-width: 100%;
        min-width: auto;
    }
    .text ul li {
        font-size: 16px;
    }
    .docs-wrapper .image-container {
        flex-wrap: wrap;
        padding: 0 16px;
        gap: 16px;
    }
    .docs-wrapper .image-container img {
        width: 45%;
        max-width: 100%;
    }
    .docs-wrapper h2 {
        padding: 8px 16px;
    }
    .centered-content {
        padding: 0 8px;
    }
}