.navbar-brand {
    font-weight: bold;
    color: white;
}
nav{
    background-color: #AD6178;
}
.navbar-dark .navbar-nav .nav-link {
    color: white;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #222;
}

h2 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: #444;
}

.content {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.company-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.company-card h2 {
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.address {
    margin-bottom: 15px;
}

.address p {
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form textarea {
    height: 120px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid black;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background: #555;
}

.google-map {
    background: #f5f5f5;
    padding: 20px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

footer {
    background-color: #AD6178;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: black;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: white;
    font-size: 14px;
}

.img-cover {
    width: 100%;
    height: 80%;
    object-fit: cover;
}