
/* Mobile devices (up to 768px): stack image and text vertically */
@media (max-width: 768px) {
	/* Cookie banner */
	.consent-banner {
		flex-direction: column;
		align-items: center;
		padding: 1rem;
		gap: 0.75rem;
	}
	.consent-banner__text {
		flex: unset;
		font-size: 0.85rem;
		text-align: center;
	}
	.consent-banner__buttons {
		width: 100%;
		justify-content: center;
	}
	.consent-banner__btn {
		padding: 0.5rem 1rem;
		font-size: 0.85rem;
	}

    	header .logo {
		max-height: 60px;
		width: auto;
	}

	.image-text-container {
        display: flex;
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}
	.image-side,
	.text-side {
		flex: unset;
		width: 100%;
		max-width: 100%;
	}
	.image-side img,
	.image-side video {
		width: 100%;
		margin-top: 0;
		border-radius: 30px;
	}
	.image-text-section {
		padding: 8% 2%;
	}

	/* Pricing cards */
	.pricing-section {
		padding: 15%;
		margin-top: 15%;
	}
	.pricing {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	/* Card typography (match pricing + services) */
	.pricing-card h3,
	.service-box h3 {
		font-size: var(--fontsize-h3);
	}
	.pricing-card p,
	.service-box p {
		font-size: var(--fontsize-p);
	}

	/* Service cards */
	.service-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		justify-items: center;
	}
	.service-box {
		max-width: 420px;
	}
	.service-box img {
		height: 300px;
	}
	body {
		font-size: 16px;
	}
	.hero h1 {
		font-size: 2rem;
	}
}

/* Tablet devices (769px to 1024px): row layout, moderate gap */
@media (min-width: 769px) and (max-width: 1024px) {
	header .logo {
		max-height: 80px;
		width: auto;
	}

    .image-text-container {
        display: flex;
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}
	.image-side,
	.text-side {
		flex: unset;
		width: 100%;
		max-width: 100%;
	}
	.image-side img,
	.image-side ::-webkit-validation-bubble-text-block {
		width: 100%;
		margin-top: 0;
		border-radius: 30px;
	}
	.image-text-section {
		padding: 8% 2%;
	}

	/* Pricing cards */
	.pricing {
		grid-template-columns: repeat(2, minmax(0, 320px));
	}

	/* Card typography (match pricing + services) */
	.pricing-card h3,
	.service-box h3 {
		font-size: var(--fontsize-h3);
	}
	.pricing-card p,
	.service-box p {
		font-size: 1.05rem;
	}

	/* Service cards */
	.service-box img {
		height: 320px;
	}
	body {
		font-size: 17px;
	}
	.hero h1 {
		font-size: 2.5rem;
	}
}

/* Desktop devices (1025px and up): row layout, larger gap */
@media (min-width: 1025px) {
	.image-text-container {
		flex-direction: row;
		gap: 3rem;
	}
	body {
		font-size: 18px;
	}
	.hero h1 {
		font-size: 3rem;
	}
}

