/* RESET */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* HEADER */
/* HEADER */
.header_section {
    background-color: #333;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    color: #f8c52d;
    text-transform: uppercase;
    font-weight: bold;
}

.navbar-brand img {
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 15px;
    position: relative;
}

.navbar-nav .menu-item {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.navbar-nav .menu-item:hover {
    color: #333;
    background-color: #f8c52d;
    text-decoration: none;
    transform: scale(1.05);
}

/* ACTIVE ITEM */
.navbar-nav .nav-item.active .menu-item {
    background-color: #f8c52d;
    color: #333;
}

/* RESPONSIVE MENU */
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.75)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .navbar-nav {
        display: block;
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }
}

/* FOOTER */
.footer_section {
    background-color: #222;
    color: #ccc;
    padding: 20px 0;
}

.footer_section a {
    color: #f8c52d;
    text-decoration: none;
}

.footer_section a:hover {
    text-decoration: underline;
}

.footer_section p {
    margin: 5px 0;
    text-align: center;
}

/* CONTENT */
.content_section {
    padding: 40px 0;
    background-color: #fff;
}

h2 {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

/* SERVICE CARDS */
.service_card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service_card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service_card h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service_card p {
    text-align: justify;
    font-size: 1rem;
    color: #555;
}

.service_card ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: disc;
    color: #555;
}

/* FORM */
form .form-group {
    margin-bottom: 15px;
}

form .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #f8c52d;
    color: #333;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e6b815;
}

/* MAP */
iframe {
    border: none;
    border-radius: 5px;
    margin-top: 15px;
}

/* COLUMNS */
.column-text {
    column-count: 2;
    column-gap: 20px;
    text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .service_card {
        margin-bottom: 20px;
    }

    .column-text {
        column-count: 1;
    }
}