@font-face {
    font-family: 'robotomedium';
    src: url('roboto-medium-webfont.woff2') format('woff2'),
         url('roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotoregular';
    src: url('roboto-regular-webfont.woff2') format('woff2'),
         url('roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'robotoregular', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

footer a {
    color: #fff;
    border-bottom: 1px dotted #777;
}

footer a:hover {
    color: #ccc;
    border-bottom: 1px solid #ccc;
}

.container {
    width: 50%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

@media (max-width: 1024px) {
    .container { width: 80%; }
}

@media (max-width: 600px) {
    .container { width: 95%; }
}

header {
    background-color: #fff;
    border-bottom: 2px solid #2c3e50;
    padding: 15px 0;
    text-align: center;
}

.logo {
    height: 60px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

h1, h2, h3 {
    color: #2c3e50;
}

h2 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.lawyer-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #2c3e50;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.senior {
    border-left-color: #95a5a6;
    background-color: #f4f4f4;
}

.notariat {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px;
    border-radius: 4px;
}

.notariat h2 {
    color: #fff;
    border-bottom-color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-box {
    line-height: 1.6;
}

.card-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.card-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.card-links a:hover .icon {
    fill: #000;
}