
:root {
    --primary-color: #0056b3; 
    --secondary-color: #004085; 
    --accent-color: #ffd700; 
    --dark-color: #333333; 
    --light-color: #f8f9fa; 
    --white: #ffffff;
    --text-muted: #555555; 
}   

*, *::before, *::after {
    box-sizing: border-box;
}


body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--light-color); 
    color: var(--dark-color);
}


article {
    max-width: 960px; 
    margin: 3rem auto;
    padding: 3rem; 
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    border-radius: 12px;
}

article hr {
    border: none;
    border-top: 2px solid var(--light-color);
    margin: 4rem 0;
}

article header {
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color); 
    margin-bottom: 3rem;
}

article h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700; 
    letter-spacing: -0.5px; 
    margin: 0;
    text-align: center;
}

article h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

article h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 0.5rem; 
    border-left: 5px solid var(--accent-color); 
    padding-left: 15px;
    font-weight: 600;
}

article p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.7; 
    color: var(--text-muted); 
}

article strong {
    color: var(--primary-color);
    font-weight: 700;
}

.logo{
    width: 10rem;
    display: flex;
    margin: 0 auto 1.5rem auto;
   
}


article ul {
    list-style: none; 
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    gap: 15px;
}

article ul li {
    background-color: var(--light-color); 
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color); 
    line-height: 1.5;
    transition: all 0.3s ease; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

article ul li:hover {
    background-color: rgba(0, 86, 179, 0.05); 
    border-left-color: var(--accent-color);
    transform: translateY(-2px); 
}

article ul li::before {
    content: none;
}


.image-slider {
    max-width: 600px; 
    margin: 2rem auto;
    display: block; 
    overflow: hidden; 
    position: relative;
    height: 300px; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-track {
   
    display: flex; 
    height: 100%;
    transition: transform 0.5s ease-in-out; 
}

.slider-track img {
    min-width: 100%; 
    height: 100%;
    object-fit: cover; 
    flex-shrink: 0; 
    transition: none; 
    border-radius: 0; 
    box-shadow: none; 
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.65); 
    color: var(--white);
    border: none;
    padding: 10px 15px; 
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.85;
    transition: all 0.3s;
}

.prev-button:hover, .next-button:hover {
    opacity: 1;
    background: var(--primary-color);
}

.prev-button {
    left: 0; 
    border-radius: 0 5px 5px 0;
}

.next-button {
    right: 0; 
    border-radius: 5px 0 0 5px;
}


article footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px dashed var(--light-color); 
}

article footer p {
    font-style: italic; 
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    color: #555555;
    font-weight: bold;
    margin: 1rem 0.5rem;
    transition: background-color 0.3s ease;

}

.contact-button:not(.emergency-button) {
    background-color: #f7d307;
}

.contact-button:not(.emergency-button):hover {
    background-color: hsl(115, 88%, 49%);
}



@media (max-width: 768px) {
    article {
        padding: 1.5rem;
        margin: 1rem;
        box-shadow: none; 
    }

    article h1 {
        font-size: 2.2rem;
    }

    article h2 {
        font-size: 1.8rem;
    }
    
    .image-slider {
        height: 180px; 
        margin: 1.5rem auto;
    }

    article ul {
        display: block;
    }
    
    article ul li {
        margin-bottom: 10px;
        font-size: 1rem;
    }
}