.empty {
    text-align: center;
    background-color: #ffffff;
}
.box1{
    background-color: #750b0b;
    text-align: center;
    height: 100px;
}
body {
    background-color: #ffffff;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
img {
    width: 100px;
    height: auto;
    border: 2px solid #140202;
}
.box2 {
    background-color: #faeccf;
    height: 70px;
    text-align: center;
}
.contact {
    width: 100px;
    height: 40px;
    background-color: #faeccf;
    border: 2px solid #750b0b;
    border-radius: 40px;
}
.box3 {
    background-color: #faeccf;
    height: 50px;
    text-align: center;
}
.law {
    margin-top: 50px;
    margin-left: 340px;
    margin-right: 100px;
}
h2 {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    border-bottom: 2px solid #140202;
    margin-left: 150px;
    margin-right: 150px;
}
h1 {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: bold;
    border-bottom: 2px solid #140202;
    margin-left: 150px;
    margin-right: 150px;
}
.meet {
    font-size: 40px;
    text-align: center;
    color: #faeccf;
    background-color: #750b0b;
    margin-left: 820px;
    margin-right: 150px;
}
.team {
    color: #faeccf;
    text-decoration: none;
}
.team:hover {
    color: #140202;
}
/*header*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #750b0b;
    padding: 1rem 2rem;
    color: #faeccf;
    position: relative;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #faeccf;
}
nav {
    display: flex;
    gap: 2rem;
}
nav a {
    color: #faeccf;
    text-decoration: none;
    font-weight: 500;
}
nav a:hover {
    color: #140202;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #750b0b;
    color:#faeccf;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #750b0b;
        align-items: center;
        display: none;
    }
    nav.active {
        display: flex;
    }
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
/*Footer*/
footer {
    background-color: #750b0b;
    color: #faeccf;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 40px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-about, .footer-links, .footer-social {
    flex: 1 1 250px;
}
.footer-about h3, .footer-links h4, .footer-social h4 {
    margin-bottom: 0.5rem;
    color: #faeccf;
}
.footer-links ul{
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin: 0.5rem 0;
}
.footer-links a {
    color: #faeccf;
    text-decoration: none;
}
.footer-links a:hover {
    color: #140202;
}
.footer-social a {
    margin-right: 1rem;
    color: #faeccf;
    font-size: 1.2rem;
    text-decoration: none;
}
.footer-social a:hover {
    color: #140202;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #140202;
    padding-top: 1rem;
}