@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Variables de Color */
:root {
	--color-primary: #004C45;
	--color-accent: #D6D1CA;
	--color-dark: #0f2f2c;
	--color-text: #3f3f3f;
	--color-text-light: #7a7a7a;
	--color-bg-light: #f6f6f4;
	--color-white: #ffffff;
	--color-border: #dcd9d4;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: var(--color-text);
	background: var(--color-white);
	padding-top: 85px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	color: var(--color-dark);
	font-weight: 700;
	line-height: 1.35;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* ============================================ */
/* HEADER MEJORADO */
/* ============================================ */
#header {
	background: linear-gradient(180deg, var(--color-primary) 0%, #003a34 100%);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 0;
	box-shadow: 0 4px 20px rgba(0, 76, 69, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

#header.scrolled {
	padding: 0;
	box-shadow: 0 6px 30px rgba(0, 76, 69, 0.4);
	background: linear-gradient(180deg, #003a34 0%, var(--color-primary) 100%);
}

#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5em 0;
	transition: padding 0.3s ease;
}

#header.scrolled .container {
	padding: 1.1em 0;
}

/* Estilo optimizado para el nombre de la firma */
#header h1 {
	font-size: 1em;
	line-height: 1.3;
	margin: 0;
}

#header h1 a {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	letter-spacing: 1px;
	text-decoration: none;
	color: var(--color-white);
	transition: letter-spacing 0.3s ease;
}

#header h1 a::before {
	display: none !important;
}

#header h1 a .firm-name {
	font-size: 1.15em;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--color-white);
}

#header h1 a .firm-subtitle {
	font-size: 0.7em;
	font-weight: 400;
	letter-spacing: 2px;
	color: var(--color-accent);
	text-transform: uppercase;
	opacity: 0.95;
}

#header h1 a:hover .firm-name {
	letter-spacing: 2px;
}

#header h1 a:hover::before {
	display: none !important;
}

#header nav ul {
	list-style: none;
	display: flex;
	gap: 0;
	align-items: center;
	margin: 0;
}

#header nav ul li {
	position: relative;
	margin: 0 1.5em;
}

#header nav ul li a {
	color: var(--color-white);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85em;
	font-weight: 600;
	letter-spacing: 1.5px;
	padding: 0.8em 0.8em;
	display: inline-block;
	position: relative;
	transition: color 0.3s ease;
}

#header nav ul li a::before {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0.8em;
	right: 0.8em;
	height: 2px;
	background: var(--color-accent);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: center;
}

#header nav ul li a:hover::before,
#header nav ul li a.active::before {
	transform: scaleX(1);
}

#header nav ul li a:hover,
#header nav ul li a.active {
	color: var(--color-accent);
}

#header nav ul li:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -1.5em;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 18px;
	background: rgba(214, 209, 202, 0.2);
}

/* Hero */
.page-hero {
	background: linear-gradient(rgba(0, 76, 69, 0.88), rgba(0, 76, 69, 0.88)),
	            url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600') center/cover;
	background-attachment: fixed;
	padding: 8em 0 6em;
	text-align: center;
	color: var(--color-white);
}

.page-hero h1 {
	font-size: 4em;
	color: var(--color-white);
	margin-bottom: 0.3em;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.page-hero p {
	font-size: 1.3em;
	color: rgba(255,255,255,0.9);
	max-width: 700px;
	margin: 0 auto;
	font-weight: 300;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	gap: 0.5em;
	margin-top: 2em;
	font-size: 0.9em;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.breadcrumb a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--color-accent);
}

.breadcrumb span {
	color: var(--color-accent);
}

/* Secciones */
section {
	padding: 5em 0;
}

.intro-section {
	background: var(--color-white);
	text-align: center;
	padding: 4em 0;
}

.intro-section .lead {
	font-size: 1.3em;
	color: var(--color-text);
	max-width: 850px;
	margin: 0 auto 1.5em;
	line-height: 1.8;
	font-weight: 300;
	text-align: justify;
}

/* Áreas de Práctica - Diseño Compacto */
.practice-areas {
	margin-top: 2em;
	padding: 2em 2em;
	background: transparent;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.practice-areas h3 {
	text-align: center;
	margin-bottom: 1.5em;
	font-size: 1.3em;
	color: var(--color-dark);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.areas-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8em;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}

.area-item {
	background: var(--color-bg-light);
	padding: 0.6em 1.2em;
	border-radius: 20px;
	text-decoration: none;
	font-size: 0.85em;
	color: var(--color-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid var(--color-border);
}

.area-item::before {
	display: none;
}

.area-item:hover {
	background: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
	transform: translateY(-2px);
}

/* Grid de Equipo */
/* Grid de Equipo - Tamaño Uniforme y Más Grande */
.team-section {
	background: var(--color-bg-light);
}

.team-section .container {
	max-width: 1400px; /* Aumentado del 1200px por defecto */
	width: 95%; /* Aumentado del 90% por defecto */
}

.section-title {
	text-align: center;
	margin-bottom: 4em;
}

.section-title h2 {
	font-size: 2.8em;
	color: var(--color-dark);
	text-transform: uppercase;
	margin-bottom: 0.3em;
	letter-spacing: 2px;
	text-align: center;
}

.section-title h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--color-accent);
	margin: 0.8em auto;
}

.section-title p {	
	font-size: 1.1em;
	color: var(--color-text-light);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-align: center;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, 380px);
	gap: 2em;
	justify-content: center;
	align-items: start;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 1em;
}

.team-member {
	width: 100%;
	max-width: 380px;
	height: 720px;
	background: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-image {
	width: 100%;
	height: 380px; /* Aumentado de 320px */
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
	transform: scale(1.08);
}

.member-social {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 76, 69, 0.95));
	padding: 3em 1em 1em;
	display: flex;
	justify-content: center;
	gap: 1em;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-member:hover .member-social {
	opacity: 1;
}

.member-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	border: 2px solid var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	transition: all 0.3s ease;
	text-decoration: none;
}

.member-social a:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	transform: translateY(-3px);
}

.member-info {
	padding: 2em 1em;
	text-align: center;
	display: flex;
	flex-direction: column;
	height: 200px;
	flex-shrink: 0;
}

.member-info h3 {
	font-size: 1em;
	color: var(--color-dark);
	margin-bottom: 0.5em;
	font-weight: 700;
	line-height: 1.3;
	min-height: 35px;
	max-height: 35px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.member-role {
	color: var(--color-accent);
	text-transform: uppercase;
	font-size: 0.78em; /* Ligeramente aumentado */
	font-weight: 700;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 0.8em;
	min-height: 20px; /* Aumentado de 18px */
	line-height: 1.2;
	text-align: center;
}

.member-area {
	color: var(--color-text-light);
	font-size: 0.92em; /* Aumentado de 0.88em */
	line-height: 1.5;
	margin-bottom: 1.2em;
	min-height: 90px; /* Aumentado de 80px */
	max-height: 90px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-overflow: ellipsis;
	text-align: center;
}

.member-contact {
	display: flex;
	flex-direction: column;
	gap: 0.6em; /* Aumentado de 0.5em */
	font-size: 0.88em; /* Aumentado de 0.85em */
	color: var(--color-text);
	margin-top: auto;
	padding-top: 1em;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.member-contact a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.member-contact a:hover {
	color: var(--color-accent);
}

.member-contact i {
	color: var(--color-accent);
	margin-right: 0.5em;
	width: 15px;
}

/* Tarjetas sin información de contacto - más compactas */
.team-member.no-contacto {
	height: 580px;
}

.team-member.no-contacto .member-info {
	height: 140px;
	padding: 1.5em 1em;
}

.team-member.no-contacto .member-area {
	min-height: 60px;
	max-height: 60px;
	margin-bottom: 0.8em;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(rgba(0, 76, 69, 0.9), rgba(0, 76, 69, 0.9)),
	            url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover;
	background-attachment: fixed;
	color: var(--color-white);
	text-align: center;
	padding: 7em 0;
	position: relative;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 76, 69, 0.4) 100%);
}

.cta-section .container {
	position: relative;
	z-index: 1;
}

.cta-section h2 {
	font-size: 3em;
	color: var(--color-white);
	margin-bottom: 0.5em;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.cta-section p {
	font-size: 1.3em;
	color: rgba(255,255,255,0.95);
	margin-bottom: 2.5em;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.cta-button {
	display: inline-block;
	padding: 1.2em 3em;
	background: var(--color-accent);
	border: 2px solid var(--color-accent);
	color: var(--color-white) !important;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.5px;
	transition: all 0.4s ease;
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
	border-radius: 4px;
}

.cta-button:hover {
	background: #b8965f;
	border-color: #b8965f;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(201, 168, 106, 0.5);
}

/* Footer */
#footer {
	background: linear-gradient(180deg, #004C45 0%, #D6D1CA 200%);
	color: rgba(255,255,255,0.85);
	padding: 5em 0 2.5em;
	font-family: 'Montserrat', sans-serif;
}

/* Grid principal */
.footer-content {
	display: grid;
	grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
	gap: 4em;
	padding-bottom: 3em;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Títulos */
.footer-column h3 {
	color: #ffffff;
	font-size: 0.9em;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.8em;
	position: relative;
}

/* Línea sutil bajo títulos */
.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 30px;
	height: 2px;
	background: var(--color-accent);
}

/* Links */
#footer ul {
	list-style: none;
}

#footer ul li {
	margin-bottom: 0.7em;
}

#footer ul li a {
	color: rgba(255,255,255,0.75);
	font-size: 0.9em;
	text-decoration: none;
	transition: all 0.3s ease;
}

#footer ul li a:hover {
	color: var(--color-accent);
	padding-left: 4px;
}

/* Oficinas */
.location-box {
	padding: 0 0 1.2em;
	border-left: none;
	padding-left: 0;
	margin-bottom: 2em;
	background: transparent;
}

.location-box h4 {
	color: var(--color-accent);
	font-size: 0.95em;
	margin-bottom: 0.6em;
	letter-spacing: 1px;
}

.location-box p {
	font-size: 0.85em;
	color: rgba(255,255,255,0.8);
	line-height: 1.7;
	margin: 0.2em 0;
}

.social-icons {
	display: flex;
	gap: 1em;
	margin: 1.5em 0 2em;
}

.social-icons a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.85);
	font-size: 1em;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-icons a:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
	transform: translateY(-3px);
}

.footer-contact p {
	font-size: 0.8em;
	color: rgba(255,255,255,0.6);
	margin-bottom: 0.3em;
}

.footer-contact a {
	color: rgba(255,255,255,0.9);
	font-size: 0.9em;
	font-weight: 100;
	text-decoration: none;
}

.footer-contact a:hover {
	color: var(--color-accent);
}

.footer-bottom {
	text-align: center;
	padding-top: 2em;
}

.footer-bottom p {
	font-size: 0.8em;
	color: rgba(255,255,255,0.55);
}

.footer-bottom a {
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	margin: 0 0.5em;
}

.footer-bottom a:hover {
	color: var(--color-accent);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

/* Tablets y pantallas medianas (max-width: 968px) */
@media screen and (max-width: 968px) {
	body {
		font-size: 16px;
		padding-top: 100px;
	}

	.container {
		width: 92%;
	}

	#header nav ul li {
		margin: 0 0.8em;
	}

	#header nav ul li a {
		font-size: 0.8em;
		letter-spacing: 1.2px;
	}

	.page-hero {
		background-attachment: scroll;
		padding: 6em 0 4em;
	}

	.page-hero h1 {
		font-size: 3em;
	}

	.page-hero p {
		font-size: 1.15em;
	}

	.intro-section .lead {
		font-size: 1.2em;
	}

	.areas-grid {
		gap: 0.6em;
	}

	.area-item {
		font-size: 0.8em;
		padding: 0.5em 1em;
	}

	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 2.5em;
	}

	.team-member {
		width: 100%;
		height: auto;
		min-height: 650px;
	}

	.member-image {
		height: 320px;
	}

	.member-info {
		height: auto;
		min-height: 300px;
		padding: 1.8em 1.5em;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 3em;
	}

	.cta-section h2 {
		font-size: 2.5em;
	}

	.cta-section p {
		font-size: 1.15em;
	}
}

/* Móviles en horizontal y tablets pequeñas (max-width: 768px) */
@media screen and (max-width: 768px) {
	body {
		padding-top: 130px;
		font-size: 15px;
	}

	.container {
		width: 94%;
	}

	#header .container {
		flex-direction: column;
		gap: 1em;
		padding: 1.2em 0;
	}

	#header h1 {
		font-size: 0.9em;
	}

	#header h1 a .firm-name {
		font-size: 1.1em;
		letter-spacing: 1.2px;
	}

	#header h1 a .firm-subtitle {
		font-size: 0.65em;
		letter-spacing: 1.5px;
	}

	#header nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5em;
	}

	#header nav ul li {
		margin: 0 0.5em;
	}

	#header nav ul li a {
		font-size: 0.75em;
		padding: 0.6em 0.6em;
	}

	#header nav ul li:not(:last-child)::after {
		display: none;
	}

	.page-hero {
		padding: 4em 0 3em;
	}

	.page-hero h1 {
		font-size: 2.5em;
		letter-spacing: 2px;
	}

	.page-hero p {
		font-size: 1em;
		padding: 0 1em;
	}

	.breadcrumb {
		margin-top: 1.5em;
		font-size: 0.85em;
	}

	section {
		padding: 3.5em 0;
	}

	.intro-section {
		padding: 3em 0;
	}

	.intro-section .lead {
		font-size: 1.1em;
		padding: 0 1em;
	}

	.practice-areas {
		padding: 1.5em 1em;
		margin-top: 1.5em;
	}

	.practice-areas h3 {
		font-size: 1.15em;
		margin-bottom: 1.2em;
	}

	.areas-grid {
		gap: 0.5em;
	}

	.area-item {
		font-size: 0.75em;
		padding: 0.5em 0.9em;
	}

	.section-title h2 {
		font-size: 2.2em;
		letter-spacing: 1.5px;
	}

	.section-title p {
		font-size: 1em;
		letter-spacing: 1.2px;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 2em;
	}

	.team-member {
		width: 100%;
		max-width: 450px;
		margin: 0 auto;
		height: auto;
		min-height: 600px;
	}

	.member-image {
		height: 280px;
	}

	.member-info {
		height: auto;
		min-height: 280px;
		padding: 1.6em 1.3em;
	}

	.member-info h3 {
		font-size: 1.3em;
		min-height: 50px;
		max-height: none;
	}

	.member-role {
		font-size: 0.75em;
		margin-bottom: 0.7em;
	}

	.member-area {
		font-size: 0.88em;
		min-height: 75px;
		max-height: none;
	}

	.member-contact {
		font-size: 0.85em;
		gap: 0.5em;
	}

	.cta-section {
		padding: 5em 0;
		background-attachment: scroll;
	}

	.cta-section h2 {
		font-size: 2em;
		letter-spacing: 1.5px;
	}

	.cta-section p {
		font-size: 1.05em;
		padding: 0 1em;
	}

	.cta-button {
		padding: 1em 2.5em;
		font-size: 0.95em;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2.5em;
	}

	.location-box {
		padding: 1em 0;
		padding-left: 0;
		margin-bottom: 1.5em;
	}
}

/* Móviles pequeños (max-width: 480px) */
@media screen and (max-width: 480px) {
	body {
		padding-top: 70px;
		font-size: 14px;
	}

	.container {
		width: 95%;
	}

	#header .container {
		flex-direction: column;
		gap: 0.1em;
		padding: 0.6em 0;
	}

	#header h1 {
		font-size: 0.9em;
		margin-bottom: 0.05em;
	}

	#header h1 a .firm-name {
		font-size: 1em;
		letter-spacing: 0.8px;
	}

	#header h1 a .firm-subtitle {
		font-size: 0.55em;
		letter-spacing: 1px;
	}

	#header nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.3em;
	}

	#header nav ul li {
		margin: 0 0.2em;
	}

	#header nav ul li:not(:last-child)::after {
		display: none;
	}

	#header nav ul li a {
		font-size: 0.65em;
		padding: 0.5em 0.3em;
		letter-spacing: 0.8px;
	}

	.page-hero {
		padding: 3em 0 2.5em;
	}

	.page-hero h1 {
		font-size: 2em;
		letter-spacing: 1.5px;
	}

	.page-hero p {
		font-size: 0.95em;
		padding: 0 0.8em;
	}

	.breadcrumb {
		margin-top: 1.2em;
		font-size: 0.8em;
	}

	section {
		padding: 2.5em 0;
	}

	.intro-section {
		padding: 2em 0;
	}

	.intro-section .lead {
		font-size: 1em;
		padding: 0 0.5em;
	}

	.practice-areas {
		padding: 1.2em 0.8em;
		margin-top: 1.2em;
	}

	.practice-areas h3 {
		font-size: 1em;
		margin-bottom: 1em;
		letter-spacing: 1.2px;
	}

	.areas-grid {
		gap: 0.4em;
	}

	.area-item {
		font-size: 0.7em;
		padding: 0.5em 0.8em;
	}

	.section-title {
		margin-bottom: 2.5em;
	}

	.section-title h2 {
		font-size: 1.8em;
		letter-spacing: 1.2px;
	}

	.section-title h2::after {
		width: 60px;
		height: 3px;
		margin: 0.6em auto;
	}

	.section-title p {
		font-size: 0.9em;
		letter-spacing: 1px;
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.2em;
		justify-items: center;
		max-width: 400px;
		margin: 0 auto;
		padding: 0 0.5em;
	}

	.team-member {
		width: 100%;
		max-width: 170px;
		height: 480px;
	}

	.member-image {
		height: 220px;
	}

	.member-info {
		height: auto;
		min-height: 220px;
		padding: 1em;
	}

	.member-info h3 {
		font-size: 1em;
		min-height: 40px;
		max-height: 40px;
		margin-bottom: 0.3em;
	}

	.member-role {
		font-size: 0.65em;
		margin-bottom: 0.4em;
	}

	.member-area {
		font-size: 0.78em;
		min-height: 55px;
		max-height: 55px;
		line-height: 1.3;
		margin-bottom: 0.8em;
	}

	.member-contact {
		font-size: 0.75em;
		gap: 0.3em;
		padding-top: 0.6em;
	}

	.member-area {
		font-size: 0.85em;
		min-height: 70px;
		line-height: 1.4;
	}

	.member-contact {
		font-size: 0.82em;
		gap: 0.4em;
		padding-top: 0.8em;
	}

	.member-social a {
		width: 36px;
		height: 36px;
		font-size: 0.9em;
	}

	.cta-section {
		padding: 4em 0;
	}

	.cta-section h2 {
		font-size: 1.7em;
		letter-spacing: 1.2px;
	}

	.cta-section p {
		font-size: 0.95em;
		padding: 0 0.8em;
		margin-bottom: 2em;
	}

	.cta-button {
		padding: 0.9em 2em;
		font-size: 0.9em;
		letter-spacing: 1.2px;
	}

	#footer {
		padding: 3.5em 0 2em;
	}

	.footer-content {
		gap: 2em;
		padding-bottom: 2em;
	}

	.footer-column h3 {
		font-size: 0.85em;
		letter-spacing: 1.5px;
		margin-bottom: 1.5em;
	}

	.footer-column h3::after {
		width: 25px;
	}

	#footer ul li a {
		font-size: 0.85em;
	}

	.location-box {
		padding: 0 0 0.8em;
		padding-left: 0;
		margin-bottom: 1.2em;
	}

	.location-box h4 {
		font-size: 0.9em;
	}

	.location-box p {
		font-size: 0.8em;
	}

	.social-icons {
		gap: 0.8em;
		margin: 1.2em 0 1.5em;
	}

	.social-icons a {
		width: 38px;
		height: 38px;
		font-size: 0.95em;
	}

	.footer-contact p {
		font-size: 0.75em;
	}

	.footer-contact a {
		font-size: 0.85em;
	}

	.footer-bottom {
		padding-top: 1.5em;
	}

	.footer-bottom p {
		font-size: 0.75em;
	}
}
