:root {
	--bg-color: #fdf5e6;
	--text-color: #333333;

}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
	background-color: var(--bg-color);
	color: var(--text-color);
	padding: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.center_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
    text-align: center
}

.main_logo {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: hueRotate 5s linear infinite; /* slow continuous rotation */
}

.main_logo:hover {
    animation: hueRotate 2s linear infinite; /* fast rotation on hover */
}

@keyframes hueRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.social_row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.social_row a img {
    width: 50px;
    height: auto;
    display: block;
    transition: transform 0.15s;
}

.social_row a:hover img {
    transform: scale(1.15);
}

.floatingchat-container-wrap {
    transition: transform 0.15s;
}

.floatingchat-container-wrap:hover {
    transform: scale(1.15)
}

.contact_text {
	font-size: 2rem;
}

.horizontal-border {
    border-top: 2px solid #333333;
    margin: 30px 0;
}

.faq_section {
	width: 100%;
	text-align: left;
	margin-top: 20px;
}

.faq_section h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

details {
	margin-bottom: 15px;
	border-bottom: 1px solid #888888;
	padding-bottom: 15px;
	cursor: pointer;
}

summary {
	font-size: 2rem;
	list-style: none;
    transition: transform 0.15s;
}

summary:hover {
    transform: scale(1.025)
}

summary::after {
	content: "+"; 
	float: right;
}

details[open] summary::after {
	content: "-";
}

details p {
	margin-top: 20px;
    margin-bottom: 20px;
	color: #555;
    padding-left: 35px;
    padding-right: 35px;
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    .main_logo {
        max-width: 100%;
        height: auto;
    }

    .contact_text {
        font-size: 1.5rem;
    }

    .social_row {
		gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

	.social_row a img {
    width: 45px;
	}

	summary {
	font-size: 1.75rem;
	}
}