:root {
    --primary-color: #2c3e50;
    --secondary-color: #ba856f;
    --accent-color: #3498db;
    --text-color: #333;
    --background-color: #f4f6f7;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    color: var(--text-color);
    text-decoration: none; 
}

a:visited {
    color: var(--text-color);
    text-decoration: none; 
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1rem 0 1rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
}

.header-top {
    display: flex;
    width: 100%;
}

.nameNumber {
    width: 90%;
    display: flex;
    justify-content: space-between
}

.top-number {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px;
}

.svg-title-container {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
}

.justice-icon {
    width: 50px;
    height: 50px;
    fill: white;
    margin-bottom: 5px;
}

h1 {
    color: white;
    font-size: 1.8rem;
    padding: 10px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    background-color: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    margin-bottom: 1rem;
}

h2 {
    color: var(--secondary-color);
}

h3 {
    margin-top: 1.5rem;
    color:#2c3e50
}

.section-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.section-content img {
    max-width: 550px;
    border-radius: 8px;
}

.specialty-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.specialty-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.5rem;
}

.specialty-list li::before {
    content: '▪';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.client-reviews .reviews-container {
    display: flex;
    gap: 2rem;
}

.review {
    flex: 1;
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 8px;
}

.review blockquote {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.review .reviewer {
    text-align: right;
    font-weight: bold;
}

.coordinates h3 {
    margin-top: 0;
}

.contact .contact-content {
    display: flex;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.map-container {
    flex: 2;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
}

.legal-interventions .interventions-details {
    display: flex;
    gap: 1rem;
}

.intervention-column {
    flex: 1;
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 8px;
}
.intervention-column h3 {
    margin-top: 2px;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
}


@media screen and (max-width: 1000px) {
    .section-content img {
        max-width: 400px
    }

}

@media screen and (max-width: 768px) {
    .section-content,
    .client-reviews .reviews-container,
    .contact .contact-content, .nameNumber {
        flex-direction: column;
    }

    .svg-title-container {
        flex-direction: column;
        align-items: center;
    }

    .section-content img {
        max-width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }
    .interventions-details {
        display: flex;
        flex-direction: column
    }
    
}