body{
    margin:0;
    background:#f5f3ef;
    font-family:Arial, Helvetica, sans-serif;
    color:#1f2937;
}

img{
    max-width:100%;
    height:auto;
}

.page{
    overflow:hidden;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 50px;
    background:#ffffff;
    border-bottom:1px solid rgba(0,0,0,0.06);
    box-shadow:0 2px 10px rgba(0,0,0,0.03);
}

.logo img{
    max-width:230px;
    background:#ffffff;
    padding:10px 16px;
    border-radius:12px;
}

.nav{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.nav a{
    color:#1f2937;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:0.3s;
    font-weight:bold;
}

.nav a:hover{
    color:#7a2033;
}

.hero{
    display:flex;
    align-items:center;
    gap:50px;
    padding:80px 50px;
    background:#ffffff;
}

.hero-text,
.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 18px 40px rgba(0,0,0,0.10);
}

.eyebrow{
    color:#7a2033;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    margin-bottom:18px;
    font-weight:bold;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:24px;
    color:#111827;
}

.lead{
    font-size:22px;
    line-height:1.7;
    color:#4b5563;
}

.hero p{
    color:#6b7280;
    line-height:1.9;
}

.hero-buttons{
    margin-top:28px;
}

.btn{
    display:inline-block;
    background:#7a2033;
    color:#ffffff;
    padding:15px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(122,32,51,0.16);
}

.btn:hover{
    transform:translateY(-3px);
    background:#5c1627;
}

.intro{
    padding:60px 50px;
    background:#f8f8f6;
}

.intro h2{
    font-size:36px;
    margin-bottom:18px;
    color:#111827;
}

.intro p{
    color:#4b5563;
    line-height:2;
    font-size:18px;
}

.intro a{
    color:#7a2033;
    text-decoration:none;
    font-weight:bold;
}

.intro a.btn,
.intro a.btn:visited,
.hero-buttons a.btn,
.hero-buttons a.btn:visited{
    color:#ffffff;
    text-decoration:none;
}

.quick-actions{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:60px 50px;
    background:#ffffff;
    align-items:stretch;
}

.action-card{
    background:#ffffff;
    padding:36px;
    border-radius:28px;
    border:1px solid rgba(0,0,0,0.06);
    transition:0.3s;
    box-shadow:0 14px 34px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;
    height:100%;
    min-height:420px;
    box-sizing:border-box;
}

.action-card:hover{
    transform:translateY(-6px);
    border-color:#7a2033;
    box-shadow:0 18px 42px rgba(0,0,0,0.09);
}

.action-card span{
    color:#7a2033;
    font-size:42px;
    font-weight:bold;
}

.action-card h3{
    font-size:26px;
    margin:16px 0;
    color:#111827;
    line-height:1.3;
    min-height:70px;
}

.action-card p{
    color:#6b7280;
    line-height:1.8;
    flex:1;
}

.action-card a{
    display:inline-block;
    margin-top:auto;
    background:#7a2033;
    color:#ffffff;
    padding:13px 22px;
    border-radius:999px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    align-self:flex-start;
}

.action-card a:hover{
    background:#5c1627;
}

.areas{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    padding:60px 50px;
    background:#f8f8f6;
}

.area-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 14px 34px rgba(0,0,0,0.06);
}

.area-card:hover{
    transform:translateY(-6px);
}

.area-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.area-card h3{
    padding:22px;
    color:#111827;
}

.contact-strip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
    padding:40px 50px;
    background:#7a2033;
    color:#ffffff;
}

.contact-strip strong{
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
}

.contact-strip p{
    font-size:28px;
    font-weight:bold;
}

.footer{
    text-align:center;
    padding:38px;
    background:#ffffff;
    color:#6b7280;
    border-top:1px solid rgba(0,0,0,0.06);
}

.footer a{
    color:#7a2033;
    text-decoration:none;
}

.modern-input{
    width:100%;
    padding:16px;
    border-radius:16px;
    border:1px solid rgba(0,0,0,0.08);
    background:#fafafa;
    font-size:16px;
    box-sizing:border-box;
    transition:0.3s;
}

.modern-input:focus{
    outline:none;
    border-color:#7a2033;
    box-shadow:0 0 0 4px rgba(122,32,51,0.08);
    background:#ffffff;
}

@media(max-width:900px){

.topbar{
flex-direction:column;
gap:20px;
padding:25px;
}

.nav{
justify-content:center;
}

.hero{
flex-direction:column;
padding:55px 25px;
}

.hero h1{
font-size:42px;
}

.intro,
.quick-actions,
.areas{
padding:35px 25px;
}

.contact-strip{
padding:35px 25px;
text-align:center;
justify-content:center;
}

.contact-strip p{
font-size:22px;
}

}

@media(max-width:600px){

.nav{
gap:14px;
}

.nav a{
font-size:12px;
}

.hero h1{
font-size:34px;
}

.lead{
font-size:18px;
}

.hero,
.intro,
.quick-actions,
.areas{
padding-left:20px;
padding-right:20px;
}

.btn,
.action-card a{
width:100%;
text-align:center;
box-sizing:border-box;
}

.logo img{
max-width:200px;
}

}