﻿body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* background color */
   /* margin: 40px;*/
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/*.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

    .logo img {
        height: 40px;*/ /* Slightly increased size for better visibility */
        /*width: auto;
    }*/

.container {
    max-width: 900px;
    margin: 30px auto 30px; /* Top margin avoids overlap with fixed logo */
    background: #eae0c1;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 30px;
    font-size: 2.5em;
}

h2 {
    text-align: center;
    color: #15299f;
    margin-bottom: 30px;
    font-size: 35px;
}

p {
    margin-bottom: 20px;
    font-size: 1.3em;
}

.news-item {
    background-color: #eae0c1;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.news-date {
    font-size: 0.9em;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.calendar-icon {
    font-family: 'Arial';
    background-color: #ddd;
    padding: 5px;
    border-radius: 3px;
}

.news-description {
    margin-top: 10px;
    max-height: 4.5em; /* approx 3 lines */
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-more {
    margin-top: 10px;
    color: #d2691e;
    text-decoration: underline;
    display: inline-block;
}

.contact-container {
    max-width: 800px;
    margin: 75px auto 30px; /* Add top margin to avoid overlap with logo */
    background: #eae0c1;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.address, .contacts {
    flex: 1;
    min-width: 250px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .contact-item i {
        font-size: 1.5em;
        color: #007bff;
        width: 30px;
    }

    .contact-item span {
        font-size: 1.1em;
        margin-left: 10px;
    }

.plan-details {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #007bff;
}



    a:hover {
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 700px) {
    .contact-content {
        flex-direction: column;
    }

    .address, .contacts {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}
