/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #006400; /* Lawyer Green */
    color: #ffffff; /* White text */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff; /* Ensure all text within containers is white */
}

h1, h2, h3 {
    color: #ffffff; /* White headers */
}

/* Header and Menu */
#menu {
    background-color: #004d00; /* Darker shade of green for contrast */
    padding: 10px 0;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #00ff00; /* Light green for hover */
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    background-color: #004d00; /* Darker green for mobile menu */
    padding: 10px;
}

#icon-menu {
    display: none;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#mobile-menu ul li {
    margin: 10px 0;
}

#mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
}

/* Photo Section */
#photo {
    position: relative;
    background: url('img/photo.jpg') center/cover no-repeat; /* Adds image with green overlay */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    text-align: center;
}

#name-1, #name-2 {
    color: #006400; /* Lawyer Green */
    font-weight: 700;
    }

#name-1 {
    font-size: 2.5em;
}

#name-2 {
    font-size: 1.8em;
}

/* Content Sections */
.content {
    padding: 50px 0;
    background-color: #004d00; /* Dark green for content sections */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.content h3 {
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

.content p, .box p {
    font-size: 1em;
    line-height: 1.8;
    text-align: justify;
}

.box {
    margin-top: 20px;
    background-color: #004d00; /* Slightly lighter green for box background */
    padding: 20px;
    border-radius: 8px;
}

.box ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.box li {
    font-size: 1.1em;
    margin: 8px 0;
}

/* Map and Address */
#map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

#adress {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #ffffff;
}

/* Footer */
#footer {
    background-color: #004d00;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 960px) {
    #icon-menu {
        display: block;
    }

    #menu .menu {
        display: none;
    }

    #mobile-menu {
        display: block;
    }

    .photo-big {
        height: 250px;
    }

    #name-1 {
        font-size: 2em;
    }

    #name-2 {
        font-size: 1.5em;
    }
}
