body{
	background-color: #14161a;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffb70f' fill-opacity='0.39'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

section:not(.hero) .title {
    font-weight: 700;
}

h2.subtitle{
	font-weight: 600;
}
h3.subtitle{
	font-weight: 500;
}


section.hero .title{
	letter-spacing: 0.03em;
}

.section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card-footer {
	border-radius: 0 0 6px 6px;
}

.card-footer-item {
	transition: background-color 0.3s, color 0.3s;
	border-radius: inherit;
}

.card-footer-item:hover {
	background-color: #3273dc;
	color: white;
} 

#contactForm {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

#contactForm.active {
    max-height: 500px;
    opacity: 1;
}
