/* Footer Section - Mobile First */

/* Container - zastępuje Bootstrap .container */
.footer-container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

/* Usunięcie paddingu dla footer-bottom */
.footer-bottom .footer-container {
	padding-right: 0;
	padding-left: 0;
}

/* Base styles - Mobile */
.site-footer {
	width: 100vw;
	background: var(--footer-bg-gradient);
	color: var(--white-primary);
	padding: var(--spacing-lg) 1rem 0.3rem 0.5rem;
	margin-top: auto;
}

.footer-content {
	margin-bottom: var(--spacing-xl);
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

#wpcf7-f94-o2 > form > div > div.newsletter-input-group > span.wpcf7-form-control-wrap > span {
	display: none;
}

/* Main column - zastępuje col-12 col-md-6 col-xl-6 */
.footer-main-column {
	width: 100%;
	flex-shrink: 0;
}

.wpcf7-spinner {
	display: none;
}

.footer-links-row {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.newsletter-column {
	width: 100%;
	flex-shrink: 0;
}

.newsletter-column .footer-title {
	font-size: 14px;
}

.footer-links-row .footer-column {
	flex: 0 1 auto;
	min-width: 0;
	text-align: left;
}

/* Footer Columns */
.footer-column {
	text-align: left;
}

.footer-title {
	font-family: var(--font-family-primary);
	font-size: 12px;
	font-weight: 700;
	font-style: bold;
	line-height: 150%;
	letter-spacing: -2%;
	color: var(--white-primary);
	text-wrap: nowrap;
}

.footer-company-title {
	margin-bottom: 1rem;
}

form[action='/outsourcing-it/#wpcf7-f90-o1'] .wpcf7-list-item {
	margin: 0 !important;
}

/* Company Column */
.footer-contact {
	margin-bottom: var(--spacing-md);
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 0.5rem;
}

.contact-item {
	font-family: var(--font-family-primary);
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -2%;
	color: var(--white-primary);
	margin-bottom: var(--spacing-xs);
	text-wrap: nowrap;
}

.contact-item:not(:last-child) {
	margin-bottom: 0.55rem;
}

/* Utility classes - zastępują Bootstrap margin utilities */
.contact-item-no-margin {
	margin-top: 0;
}

.contact-item-small-margin {
	margin-top: 0.25rem;
}

.contact-item a {
	color: var(--white-primary);
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.contact-item a:hover {
	color: var(--white-primary);
}

/* Social Links */
.social-links {
	display: flex;
	gap: var(--spacing-sm);
	justify-content: flex-start;
	padding: 4rem 0 1rem 0;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.social-link:focus {
	border: none;
}

.social-icon {
	width: 32px;
	height: 32px;
}

/* Footer Menu */
.footer-menu,
.services-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 0.5rem;
}

.footer-menu a,
.services-footer-menu a {
	font-family: var(--font-family-primary);
	color: var(--white-primary);
	text-decoration: none;
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -2%;
	transition: all 0.3s ease;
	text-wrap: nowrap;
	position: relative;
	display: inline-block;
}

.footer-menu a::after,
.services-footer-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: -2px;
	left: 0;
	background-color: var(--white-primary);
	transition: width 0.4s ease-in-out;
}

.footer-menu a:hover::after,
.services-footer-menu a:hover::after {
	width: 100%;
}

/* Newsletter Column */
.newsletter-column {
	width: 100%;
	max-width: 100%;
	margin-top: 1rem;
	text-align: center;
}

.newsletter-description {
	font-family: var(--font-family-primary);
	font-size: 12px;
	font-weight: 500;
	font-style: medium;
	line-height: 150%;
	letter-spacing: -1.9%;
	color: var(--white-primary);
	margin-bottom: var(--spacing-md);
	text-wrap: wrap;
}

/* Contact Form 7 specific styles for newsletter */
.newsletter-form .wpcf7-form {
	width: 100%;
	margin: 0;
}

.newsletter-form .wpcf7-form p {
	margin: 0;
	padding: 0;
}

.newsletter-form .wpcf7-form br {
	display: none !important;
}

/* Hide all line breaks */
.newsletter-form .wpcf7-form p br {
	display: none !important;
}

/* Alternative approach - target the input group container */
.newsletter-form .newsletter-input-group {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 91%;
	max-width: 400px;
	align-items: center;
	gap: 0;
	margin-left: 16px;
}

#wpcf7-f94-o2 > form > div.newsletter-form > p {
	text-align: left;
}

/* Force all form controls to be inline */
.newsletter-form .wpcf7-form-control-wrap {
	display: inline-block;
	vertical-align: top;
}

/* Ensure input and submit are inline */
.newsletter-form .wpcf7-form-control-wrap input[type='email'],
.newsletter-form .wpcf7-form-control-wrap input[type='submit'] {
	display: inline-block;
	vertical-align: top;
}

/* Force the entire form to use flex layout */
.newsletter-form .wpcf7-form {
	display: flex;
	flex-direction: column;
}

/* Make sure the first paragraph (containing input and submit) is flex */
.newsletter-form .wpcf7-form > p:first-of-type {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
}

/* Hide any line breaks that might break the layout */
.newsletter-form .wpcf7-form > p:first-of-type br {
	display: none;
}

/* Target the specific paragraph containing both input and submit */
.newsletter-form .wpcf7-form p {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
}

/* Hide the br tag between input and submit */
.newsletter-form .wpcf7-form p br {
	display: none;
}

/* Ensure the span wrapper doesn't break the layout */
.newsletter-form .wpcf7-form-control-wrap {
	display: inline-block;
	vertical-align: top;
}

/* Target the specific structure from the HTML source */
.newsletter-form .wpcf7-form p:has(.wpcf7-form-control-wrap) {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
}

/* Hide the br tag that's between input and submit */
.newsletter-form .wpcf7-form p:has(.wpcf7-form-control-wrap) br {
	display: none;
}

/* Make sure input and submit are inline */
.newsletter-form .wpcf7-form p:has(.wpcf7-form-control-wrap) .wpcf7-form-control-wrap,
.newsletter-form .wpcf7-form p:has(.wpcf7-form-control-wrap) input[type='submit'] {
	display: inline-block;
	vertical-align: top;
}

.newsletter-form .wpcf7-list-item-label::before {
	border: 1px solid;
	border-color: var(--white-primary) !important;
	background-color: var(--primary-violet-dark) !important;
}

.newsletter-form input[type='checkbox']:checked + .wpcf7-list-item-label::before {
	background-color: var(--white-primary) !important;
}

.newsletter-input-group {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: var(--spacing-md);
	border: 1px solid var(--white-primary);
	background: transparent;
}

.newsletter-input {
	width: auto;
	font-family: var(--font-family-primary);
	flex: 1;
	min-width: 200px;
	padding: var(--spacing-sm) var(--spacing-md);
	background: transparent;
	color: var(--white-primary);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -2%;
	transition: all 0.3s ease;
	border: none;
	outline: none;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

/* Contact Form 7 input styles */
.newsletter-form input[type='email'] {
	width: 100%;
	font-family: var(--font-family-primary);
	flex: 1;
	min-width: 200px;
	padding: var(--spacing-sm) var(--spacing-md);
	background: transparent;
	color: var(--white-primary);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -2%;
	transition: all 0.3s ease;
	border: none;
	outline: none;
}

.newsletter-form input[type='email']::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-label {
	position: absolute;
	top: -15px;
	left: 5px;
	background: #200234;
	padding: 0 4px;
	font-family: var(--font-family-primary);
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	line-height: 150%;
	letter-spacing: -2%;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 1;
}

.newsletter-submit {
	font-family: var(--font-family-primary);
	padding: var(--spacing-sm) var(--spacing-lg);
	background: var(--primary-violet-light);
	color: var(--white-primary);
	border-left: none;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -2%;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.newsletter-submit:hover {
	background: var(--white-primary);
	color: var(--primary-violet-light);
	border: none;
}

/* Contact Form 7 submit button styles */
.newsletter-form input[type='submit'] {
	font-family: var(--font-family-primary);
	padding: var(--spacing-sm) var(--spacing-lg);
	background: transparent;
	color: var(--white-primary);
	border-left: none;
	font-size: 12px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -2%;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.newsletter-form input[type='submit']:hover {
	background: var(--white-primary);
	color: var(--primary-violet-light);
}

.newsletter-checkbox {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-md);
}

.newsletter-checkbox input[type='checkbox'] {
	margin-top: 2px;
	flex-shrink: 0;
}

.newsletter-checkbox label {
	font-family: var(--font-family-primary);
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	line-height: 150%;
	letter-spacing: -2%;
	cursor: pointer;
	text-wrap: wrap;
}

.newsletter-form .wpcf7-form-control-wrap[data-name='acceptance-436'] input[type='checkbox']::before {
	border: 1px solid var(--white-primary);
}

#wpcf7-f94-o2 > form > div.newsletter-form > span > span > span > label > span {
	font-size: 10px;
	text-wrap: nowrap;
	margin-left: 1rem;
}

.newsletter-privacy {
	font-family: var(--font-family-primary);
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	line-height: 150%;
	letter-spacing: -2%;
	margin: 0;
	text-wrap: wrap;
}

.newsletter-privacy a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.newsletter-privacy a:hover {
	color: var(--white-primary);
}

/* Footer Bottom */
.footer-bottom {
	padding-top: var(--spacing-sm);
	padding-bottom: 0.3rem;
	text-align: left;
	width: 100%;
}

/* Footer Bottom Wrapper - zastępuje Bootstrap d-flex justify-content-between align-items-end */
.footer-bottom-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	width: 100%;
}

.footer-logo {
	margin-bottom: 0;
	align-self: flex-start;
	width: auto;
}

.footer-logo-img {
	height: auto;
	width: 75vw;
}

.footer-copyright {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: var(--spacing-sm);
	width: 100%;
}

.footer-copyright p {
	font-family: var(--font-family-primary);
	font-size: 0.5rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	line-height: 150%;
	letter-spacing: -2%;
	margin: 0;
	text-wrap: nowrap;
}

.privacy-link {
	font-family: var(--font-family-primary);
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	line-height: 150%;
	letter-spacing: -2%;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	text-wrap: nowrap;
}

.privacy-link:hover {
	color: var(--white-primary);
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
	.footer-content {
		width: 100%;
	}

	.footer-main-column {
		width: 100%;
	}

	.footer-links-row {
		width: 100%;
		flex-direction: row;
		gap: 0;
		justify-content: space-between;
	}

	.footer-links-row .footer-column {
		flex: 0 1 auto;
		min-width: 0;
	}

	.newsletter-form .wpcf7-list-item-label::before {
		transform: translateY(-0.5rem);
	}

	.newsletter-column {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.newsletter-form {
		max-width: 325px;
		text-align: left;
		margin: 0;
		margin-left: -1rem;
	}

	.newsletter-label {
		font-size: 14px;
		font-weight: 500;
		letter-spacing: -2%;
	}

	.newsletter-checkbox {
		display: none;
	}

	.newsletter-privacy {
		display: none;
	}

	.footer-logo {
		margin-left: -1rem;
	}

	.footer-logo-img {
		width: 80vw;
		height: auto;
	}

	.footer-copyright {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding-left: 0;
	}

	.footer-copyright p {
		font-size: 8px;
	}

	.privacy-link {
		font-family: var(--font-family-primary);
		font-size: 8px;
		font-style: medium;
		font-weight: 500;
		line-height: 150%;
		letter-spacing: -1%;
		color: rgba(255, 255, 255, 0.6);
	}
}

/* Very small devices (phones, less than 480px) */
@media (max-width: 480px) {
	.footer-main-column {
		width: 100%;
	}

	.footer-links-row {
		width: 100%;
		flex-direction: row;
		gap: 0;
		justify-content: space-between;
		margin: 0;
		padding: 0;
	}

	.footer-links-row .footer-column {
		flex: 0 1 auto;
		min-width: 0;
	}

	#wpcf7-f94-o2 > form > div.newsletter-form > span > span > span {
		margin: 0 !important;
	}
}

/* Extra small devices (phones, 320px and below) */
@media (max-width: 320px) {
	.footer-main-column {
		width: 100%;
	}

	.footer-links-row {
		width: 100%;
		gap: 1.5rem;
		justify-content: space-between;
	}

	.footer-services-column {
		margin-left: 0;
	}

	.footer-title {
		font-size: 10px;
		text-wrap: nowrap;
		line-height: 120%;
	}

	.contact-item {
		font-size: 10px;
		text-wrap: wrap;
		line-height: 120%;
		text-wrap: nowrap;
	}

	.footer-menu a,
	.services-footer-menu a {
		font-size: 10px;
		text-wrap: wrap;
		line-height: 120%;
	}

	.newsletter-form input[type='email'] {
		font-size: 12px;
	}

	.newsletter-form input[type='submit'] {
		font-size: 12px;
		cursor: pointer;
	}

	.footer-copyright {
		gap: 2rem;
		padding: 0;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.footer-container {
		max-width: 540px;
	}

	.footer-links-row {
		gap: 0;
		flex-wrap: nowrap;
	}

	.footer-bottom-wrapper {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		gap: var(--spacing-xl);
	}

	.footer-logo {
		margin-top: var(--spacing-xl);
		flex: 1;
		max-width: 50%;
		align-self: flex-start;
	}

	.footer-copyright {
		flex: 1;
		max-width: 50%;
		flex-direction: row;
		align-items: center;
		gap: var(--spacing-md);
		align-self: flex-end;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.footer-container {
		max-width: 1600px;
	}

	.site-footer {
		padding: var(--spacing-xxl) 0 0 0;
	}

	.footer-content {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: var(--spacing-xl);
	}

	.footer-main-column {
		width: auto;
		flex: 1;
		max-width: 50%;
	}

	.newsletter-column {
		width: auto;
		flex: 1;
		max-width: 50%;
	}

	.footer-bottom-wrapper {
		gap: var(--spacing-xl);
	}

	.footer-logo {
		flex: 1;
		max-width: 50%;
	}

	.footer-copyright {
		flex: 1;
		max-width: 50%;
		align-self: flex-end;
	}

	.footer-links-row {
		flex-direction: row;
		gap: 0;
		margin-bottom: 0;
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	.footer-links-row .footer-column {
		text-align: left;
		flex: 0 1 auto;
	}

	.social-links {
		justify-content: flex-start;
		padding-top: 2rem;
		gap: 1rem;
	}

	.social-link {
		width: 32px;
		height: 32px;
	}

	.footer-column {
		flex: 1;
	}

	.newsletter-column {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 0 var(--spacing-sm);
		text-align: left;
	}

	.footer-title {
		font-size: 24px;
	}

	.footer-company-title {
		margin-bottom: 0.5rem;
	}

	.contact-item,
	.footer-menu a,
	.services-footer-menu a {
		font-size: 20px;
	}

	.newsletter-description {
		font-size: 1rem;
		margin-left: 1rem;
	}

	.newsletter-input,
	.newsletter-submit {
		font-size: 1rem;
	}

	.newsletter-label {
		font-size: 16px;
	}

	.newsletter-checkbox label,
	.newsletter-privacy {
		font-size: 0.9rem;
	}

	.footer-logo-img {
		height: 50px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.footer-container {
		max-width: 960px;
	}

	.footer-content {
		gap: 3rem;
	}

	.footer-main-column {
		flex: 1;
		max-width: 48%;
	}

	.newsletter-column {
		flex: 1;
		max-width: 48%;
	}

	.footer-bottom-wrapper {
		gap: 3rem;
	}

	.footer-logo {
		flex: 1;
		max-width: 48%;
	}

	.footer-copyright {
		flex: 1;
		max-width: 48%;
		align-self: flex-end;
	}

	.footer-title {
		font-size: 24px;
		font-weight: 500;
	}

	.footer-description {
		margin-left: 1rem;
	}

	.footer-logo-img {
		height: 60px;
	}

	.social-icon {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.newsletter-column .footer-title {
		width: 100%;
		display: flex;
		font-size: 20px;
		justify-content: flex-start;
		padding-left: 1rem;
	}

	.newsletter-description {
		width: 100%;
		display: flex;
		justify-content: flex-start;
	}

	.newsletter-form .wpcf7-list-item-label {
		font-size: 14px;
	}

	#wpcf7-f94-o2 > form > div.newsletter-form > span > span > span > label > span {
		font-size: 16px;
		margin-left: 0;
	}

	.newsletter-form .newsletter-input-group {
		max-width: 100%;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.footer-container {
		max-width: 1300px;
	}

	.contact-item:not(:last-child) {
		margin-bottom: 0;
		color: var(--white-primary);
	}

	.site-footer {
		padding: var(--spacing-xxl) 4rem 0 2.5rem;
	}

	.footer-content {
		flex-wrap: wrap;
		gap: 2rem;
	}

	.footer-main-column {
		width: auto;
		flex: 1;
		max-width: 50%;
	}

	.newsletter-column {
		width: auto;
		flex: 1;
		max-width: 42%;
	}

	.footer-bottom-wrapper {
		gap: clamp(18rem, 4vw, 25rem);
	}

	.footer-logo {
		flex: 1;
		max-width: 40%;
		margin-left: -2.5rem;
	}

	.footer-copyright {
		flex: 1;
		max-width: 45%;
		align-self: flex-end;
		gap: 5rem;
	}

	.newsletter-form {
		width: 100%;
		max-width: 800px;
		align-items: flex-end;
	}

	.newsletter-form .wpcf7-list-item-label {
		font-size: 14px;
	}

	.footer-links-row {
		gap: 0;
		justify-content: space-between;
	}

	.contact-item,
	.footer-menu a,
	.services-footer-menu a {
		font-size: 16px;
	}

	#wpcf7-f94-o2 > form > div.newsletter-form > span > span > span > label > span {
		font-size: 16px;
		text-wrap: nowrap;
	}

	.footer-services-column {
		margin-left: 0;
	}

	.footer-bottom {
		padding-top: 0;
		justify-content: flex-start;
		text-align: center;
	}

	.footer-logo-img {
		width: 48vw;
		height: auto;
	}

	.newsletter-column {
		margin-top: 0;
	}

	.newsletter-form .newsletter-input-group {
		max-width: 100%;
	}

	.newsletter-label {
		font-size: 20px;
	}

	.newsletter-submit {
		margin-left: 2px;
	}

	.newsletter-privacy {
		font-size: 16px;
		margin-left: 15px;
	}

	.newsletter-form .wpcf7-form-control-wrap input[type='email'],
	.newsletter-form .wpcf7-form-control-wrap input[type='submit'] {
		font-size: 18px;
		cursor: pointer;
	}
	.newsletter-form input[type='submit'] {
		font-size: 18px;
		cursor: pointer;
	}
}

@media (min-width: 1400px) {
	.site-footer {
		padding: var(--spacing-xxl) 3.5rem 0 3rem;
	}
	.footer-container {
		max-width: 1600px;
	}

	.footer-content {
		gap: 3rem;
	}

	.footer-main-column {
		flex: 1;
		max-width: 46%;
	}

	.newsletter-column {
		flex: 1;
		max-width: 46%;
	}

	.footer-bottom-wrapper {
		gap: clamp(5rem, 6rem, 25rem);
	}

	.footer-logo {
		flex: 1;
		max-width: 46%;
	}

	.footer-copyright {
		flex: 1;
		max-width: 46%;
		margin-bottom: 32px;
		margin-left: clamp(5rem, 7rem, 25rem);
		gap: clamp(2rem, 3rem, 25rem);
		align-self: flex-end;
	}

	.footer-copyright p {
		font-size: 0.9rem;
	}

	.newsletter-form .wpcf7-list-item-label {
		font-size: 16px;
	}
	.newsletter-form .wpcf7-form-control-wrap input[type='email'],
	.newsletter-form .wpcf7-form-control-wrap input[type='submit'] {
		font-size: 20px;
	}
	.newsletter-form input[type='submit'] {
		font-size: 20px;
		cursor: pointer;
	}

	.newsletter-form input[type='submit']::placeholder {
		color: #9a9a9ab2;
	}

	.footer-services-column {
		margin-left: 0;
	}

	.footer-links-row {
		gap: 0;
	}

	.newsletter-form .newsletter-input-group {
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 1800px) {
	.footer-container {
		max-width: 1550px;
	}

	.footer-content {
		gap: 4rem;
	}

	.footer-main-column {
		flex: 1;
		max-width: 47%;
	}

	.newsletter-column {
		flex: 1;
		max-width: 40%;
	}

	.footer-bottom-wrapper {
		gap: 4rem;
	}

	.footer-logo {
		flex: 1;
		max-width: 47%;
	}

	.footer-copyright {
		flex: 1;
		max-width: 38%;
		gap: 4rem;
		margin-left: 0;
		padding-right: 0;
		align-self: flex-end;
	}

	.newsletter-privacy {
		font-size: 16px;
	}

	.newsletter-form .footer-title {
		font-size: 24px;
	}

	.newsletter-form .newsletter-input-group {
		max-width: 100%;
		margin-left: 16px;
	}

	.footer-logo-img {
		width: auto;
		max-width: 100%;
	}
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	.social-link,
	.newsletter-submit {
		transition: none;
	}

	.social-link:hover {
		transform: none;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.footer-menu a,
	.services-footer-menu a,
	.contact-item a,
	.newsletter-privacy a,
	.privacy-link {
		color: var(--white-primary);
	}

	.contact-item,
	.footer-copyright p {
		color: var(--white-primary);
	}
}

/* Focus styles for accessibility */
.social-link:focus {
	outline: 2px solid var(--white-primary);
	outline-offset: 2px;
}

.newsletter-checkbox input[type='checkbox']:focus {
	outline: 2px solid var(--white-primary);
	outline-offset: 2px;
}
