.Contact_Us
{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.Contact_Us .title-container
{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.Contact_Us .title-container h1
{
    position: relative;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--nav-color);
}

@media (max-width: 600px)
{
    .Contact_Us .title-container h1
    {
        font-size: 2rem;
    }
    .Contact_Us .title-container p
    {
        font-size: 15px;
    }
}

.Contact_Us .title-container h1 span
{
    color: var(--nav-hover);
}

.Contact_Us .Contact_Form
{
    width: 70%;
    padding: 10px 15px;
    margin-bottom: 30px;
}

.Contact_Us .Contact_Form form
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Contact_Us .Contact_Form form .form_row
{
    width: 100%;
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.Contact_Us .Contact_Form form .form_row input,
.Contact_Us .Contact_Form form .form_row textarea
{
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid var(--nav-color);
}

.Contact_Us .Contact_Form form .form_row textarea
{
    outline: none;
    resize: none;
    min-height: 220px;
    margin-bottom: 5px;
}

.Contact_Us .Contact_Form form .form_row input#email,
.Contact_Us .Contact_Form form .form_row input#tel
{
    width: 55%;
}

input[type="submit"]
{
    background: var(--nav-color);
    padding: 10px;
    color: var(--text-color);
    transition: all 0.3s ease-in;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

input[type="submit"]:hover
{
    background: var(--nav-hover);
}

.Contact_Us .map
{
    width: 100%;
    height: 300px;
}

.Contact_Us .map iframe
{
    width: 100%;
    height: 100%;
}

@media (max-width:600px)
{
    .Contact_Us .Contact_Form
    {
        width: 90%;
        padding: 10px 15px;
        margin-bottom: 30px;
    }
    .Contact_Us .Contact_Form form .form_row input#email,
    .Contact_Us .Contact_Form form .form_row input#tel
    {
        width: 100%;
    }
    .Contact_Us .Contact_Form form .form_row
    {
        flex-direction: column;
    }
}

/*NEWS CONTAINER*/
.Contact_Us .news-container
{
    padding: 10px;
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.Contact_Us .news-container h2
{
    text-align: center;
    margin-bottom: 20px;
}

.Contact_Us .news-container .all_news
{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
    padding: 20px;
}

.Contact_Us .news-container .all_news .latest_news
{
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.Contact_Us .news-container .all_news .latest_news .news_head
{
    cursor: pointer;
    padding: 15px 20px;
    font-weight: bold;
    background: var(--nav-hover);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.Contact_Us .news-container .all_news .latest_news .news_content
{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.Contact_Us .news-container .all_news .latest_news .news_content.open
{
    padding: 15px 20px;
    max-height: 1000px;
}

.Contact_Us .news-container .all_news h2
{
    text-align: center;
    padding: 30px 0 10px;
}

.Contact_Us .news-container .all_news .latest_news .news_head .toggle-icon
{
    font-weight: bold;
    font-size: 20px;
    transform: rotate(0);
    transition: transform 0.3s ease;
}

.Contact_Us .news-container .all_news .latest_news .news_head .toggle-icon.open
{
    transform: rotate(90deg);
}

@media (max-width: 850px)
{
    .Contact_Us .news-container .all_news
    {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px)
{
    .Contact_Us .news-container .all_news .latest_news .news_head
    {
      align-items: flex-start;
      font-size: 15px;
    }
}