/* ===== HEADER ===== */

.container-header {
background: #123b5d;
box-shadow: none;
}

.container-header .navbar-brand {
font-size: 1.7rem;
font-weight: 800;
color: #ffffff;
}

.container-header .mod-menu {
display: flex;
gap: 24px;
align-items: center;
}

.container-header .mod-menu a {
color: #ffffff;
font-weight: 600;
text-decoration: none;
}


/* ===== HERO ===== */

.fs-hero {
min-height: 560px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 80px 30px;
margin: 20px 0 50px;
border-radius: 18px;
background: linear-gradient(135deg, #123b5d, #168ca0);
}

.fs-hero-content {
width: 100%;
max-width: 900px;
margin: 0 auto;
}

.fs-hero h1 {
color: #ffffff;
font-size: clamp(2.3rem, 5vw, 4.5rem);
line-height: 1.08;
font-weight: 800;
margin: 0 0 22px;
}

.fs-hero p {
color: #ffffff;
font-size: 1.2rem;
line-height: 1.7;
max-width: 760px;
margin: 0 auto 32px;
}

.fs-hero-buttons {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}

.fs-btn {
display: inline-block;
padding: 14px 24px;
border-radius: 8px;
text-decoration: none !important;
font-weight: 700;
}

.fs-btn-primary {
background: #ffffff;
color: #123b5d !important;
}

.fs-btn-secondary {
border: 2px solid #ffffff;
color: #ffffff !important;
}


/* ===== PHONE ===== */

@media (max-width: 768px) {

.fs-hero {
min-height: auto;
padding: 50px 20px;
margin: 10px 0 30px;
border-radius: 12px;
}

.fs-hero h1 {
font-size: 2.15rem;
}

.fs-hero p {
font-size: 1rem;
}

.fs-hero-buttons {
flex-direction: column;
}

.fs-btn {
width: 100%;
}

.container-header .navbar-brand {
font-size: 1.4rem;
}
}
.container-header {
padding-top: 10px;
padding-bottom: 10px;
}

.container-header .grid-child {
align-items: center;
}

.container-header .navbar-brand {
margin: 0;
}

.container-header .mod-menu {
margin: 0;
}
/* ===== HEADER LAYOUT ===== */

.container-header .grid-child {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.container-header .navbar-brand {
margin: 0;
white-space: nowrap;
}

.container-header .mod-menu {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 26px;
margin: 0;
padding: 0;
}

.container-header .mod-menu > li {
margin: 0;
}

@media (max-width: 768px) {
.container-header .grid-child {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.container-header .mod-menu {
flex-wrap: wrap;
justify-content: flex-start;
gap: 12px 18px;
}
}
/* ===== SERVICES ===== */

.fs-services {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
margin: 10px 0 60px;
}

.fs-service-card {
background: #ffffff;
border: 1px solid #e4e8ec;
border-radius: 16px;
padding: 36px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.fs-service-card h2 {
color: #123b5d;
font-size: 1.8rem;
margin-bottom: 14px;
}

.fs-service-card p {
font-size: 1.05rem;
line-height: 1.7;
color: #4b5563;
}

.fs-service-link {
display: inline-block;
margin-top: 12px;
font-weight: 700;
color: #168ca0;
text-decoration: none;
}

.fs-service-link:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.fs-services {
grid-template-columns: 1fr;
gap: 18px;
}

.fs-service-card {
padding: 26px 22px;
}
}
/* ===== WHY CHOOSE US ===== */

.fs-why {
padding: 55px 20px 65px;
text-align: center;
}

.fs-why h2 {
color: #123b5d;
font-size: 2.2rem;
margin-bottom: 12px;
}

.fs-why-intro {
max-width: 720px;
margin: 0 auto 35px;
color: #5b6470;
font-size: 1.1rem;
line-height: 1.7;
}

.fs-why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.fs-why-item {
padding: 28px 22px;
}

.fs-why-item h3 {
color: #168ca0;
font-size: 1.35rem;
margin-bottom: 10px;
}

.fs-why-item p {
color: #4b5563;
line-height: 1.65;
}

@media (max-width: 768px) {
.fs-why-grid {
grid-template-columns: 1fr;
}

.fs-why {
padding: 40px 15px 50px;
}
}