:root
{
    --text: #222;
    --muted:#6b7280;
    --accent: #7a3ff0;
    --border: #e5e7eb;
    --radius: 18px;
}
*
{
    box-sizing: border-box;
}
body
{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texr);
    background: linear-gradient(160deg, 
     black 0%, 
    #fff 40%, 
    #f1f1f1 70%, 
    black 100%);
}
.section
{
    padding: clamp(16px, 4vw, 40px);
    max-width: 1200px;
    margin-inline: auto;
}
.title
{
    text-align: center;
    font-size: 50px;
}
.title span 
{
    color: #b33a32;
}
.layout
{
    display: grid;
    grid-template-columns: 1fr 1px 1.1fr;
    align-items: start;
    gap: clamp(18px, 2.5vw, 28px);
}
.card
{
    background: #fff;
    border: 8px solid #f3f4f6;
    border-radius: var(--radius);
    padding: clamp(12px, 2.2vw, 22px);
    box-shadow: 0 6px 30px rgba(0,0,0,.8);
    
}
.card-head
{
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 8px;
}
.brand
{
    width:64px;
    height: 64px;
    object-fit: contain;
}
.intro
{
    color: var(--muted);
    line-height: 1.6;
    margin: 6px 0 14px;
}
.accent
{
    height: 4px;
    border: 0;
    background: linear-gradient (90deg, var(--accent), transparent 80%);
    margin: 10px 0 14px;
}
.item
{
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
}
.item + .item 
{
    margin-top: 8px;
}
.item h3
{
    margin: 0 0 4px;
    font-size: clamp(18px, 2.2vw, 28px);
}
.item p
{
    margin: 0;
    color: var(--muted);
}
.item-icon
{
    font-size: 28px;
    line-height: 1;
}
.card hr
{
    border: 0;
    border-top: 1px solid var(--border);
    margin: 14px 0;
}
.map
{
    width:100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.map2
{
    width:100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.mapping
{
    height: 400 !important;
    border: 0;
}
iframe
{
    height: 190px;
}
.divider
{
    width: 1px;
    background: #bdbdbd;
    height: 100%;
    min-height: 460px;
    justify-self: center;
}
.photo-wrap
{
    margin: 0;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}
.photo-wrap img
{
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.photo-wrap img:last-child 
{
  margin-bottom: 0;      
}
.section-divider
{
  border: none;
  border-top: 2px solid brown;   
  width: 80%;                 
  margin: 30px auto;
  border-radius: 20px; 
}
@media (max-width: 900px)
{
    .layout 
    {
        grid-template-columns: 1fr;
    }
    .divider {display: none;}
}

/* mobile adjustments */
@media (max-width: 600px){
  .title{ font-size: 34px; }
  iframe, .map, .map2{ width: 100% !important; height: auto !important; }
}