* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
	background: #f4f6fb;
	color: #111;
}

#header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo_container {
	display: flex;
    flex-direction: row;
    font-weight: 700;
    font-size: 1.6rem;
    justify-content: center;
    align-items: center;
    padding: 25px 0px 0px;
    text-decoration: none;
    user-select: none;
    color: #111;
    max-width: 500px;
}

.container {
	max-width: 700px;
	margin: 30px auto;
	padding: 24px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

h1 {
	margin: 0 0 8px;
	font-size: 26px;
}

.subtitle {
	margin: 0 0 20px;
	color: #555;
}

#dropzone {
	border: 2px dashed #bbb;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	background: #fafbff;
}

#dropzone.dragover {
	border-color: #914aff;
	background: #f1e9ff;
}

#dropzone span {
	display: block;
	margin: 8px 0;
	color: #777;
}

#dropzone button {
	padding: 10px 16px;
	border-radius: 8px;
	border: none;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.controls {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 20px 0;
	align-items: center;
}

.levels label {
	margin-right: 12px;
}

#compressBtn {
	padding: 10px 18px;
	border-radius: 8px;
	border: none;
	background: #4a78ff;
	color: #fff;
	cursor: pointer;
}

#compressBtn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#stats {
	margin-top: 14px;
	color: #333;
}

#downloadArea {
	margin-top: 20px;
	text-align: center;
}

#downloadArea a {
	display: inline-block;
	padding: 10px 18px;
	background: #111;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
}

#footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 14px;
	padding-bottom: 40px;
}

.footer_links {
	display: flex;
	gap: 20px;
}

.footer_links a {
	text-decoration: none;
	color: #111;
}
.our_other_tools{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    font-weight: 700;
    padding: 34px 0px 60px;
}
.our_other_tools a{
    text-decoration:none;
    color:black;
    padding: 24px;
    max-width: 45vw;
    overflow: hidden;
    word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}
.other_tools_title{
    font-size: 28px;
    line-height: 64px;
}
.online_tool_container{
    text-align:center;
}
.other_tools_container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12%;
    padding: 24px;
    overflow: hidden;
    white-space: nowrap;
}
.tool_description{
    font-weight:normal;
}
@media (max-width: 575.98px) {
    .other_tools_container{
        flex-direction:column;
    }
}