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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #272e3b;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: #515c7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #272e3b;
}
ol, ul {
    list-style-type: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(39, 46, 59, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #272e3b;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #515c7a;
    color: #fff;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #272e3b;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #272e3b 0%, #515c7a 100%);
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #515c7a;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #272e3b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #515c7a;
    border: 2px solid #515c7a;
}

.btn-secondary:hover {
    background-color: #515c7a;
    color: #fff;
}

/* Sections */
section {
    padding: 80px 0;
}

.page-header {
    background: linear-gradient(135deg, #515c7a 0%, #272e3b 100%);
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content img {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.page-header-content h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lawyers-grid,
.advantages-grid,
.achievements-grid,
.reviews-grid,
.faq-grid {
    display: grid;
    gap: 2rem;
}

.lawyers-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.achievements-grid,
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Cards */
.lawyer-card,
.advantage-item,
.achievement-item,
.review-item,
.faq-item,
.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(39, 46, 59, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lawyer-card:hover,
.advantage-item:hover,
.achievement-item:hover,
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 46, 59, 0.15);
}

.lawyer-card h3 {
    color: #272e3b;
    margin-bottom: 0.5rem;
}

.lawyer-title {
    color: #515c7a;
    font-style: italic;
    margin-bottom: 1rem;
}

.lawyer-skills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.lawyer-skills li {
    background: #515c7a;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Stats */
.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #515c7a;
    margin-bottom: 0.5rem;
}

/* Reviews */
.review-stars {
    color: #515c7a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-item h4 {
    color: #272e3b;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.review-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Services */
.services-catalog {
    padding: 60px 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    color: #272e3b;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #515c7a;
}

.service-details {
    margin-top: 1.5rem;
}

.service-details h4 {
    color: #515c7a;
    margin-bottom: 0.5rem;
}

.service-details ul {
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #272e3b;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

/* Forms */
.newsletter,
.services-contact,
.legal-advice-cta {
    background: linear-gradient(135deg, #515c7a 0%, #272e3b 100%);
    color: #fff;
    text-align: center;
    margin: 4rem 0;
}

.newsletter h2,
.services-contact h2,
.legal-advice-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter-form,
.contact-form,
.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #515c7a;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.checkbox-group label {
    gap: 0.5rem;
    margin-bottom: 0;
    cursor: pointer;
}
.form-group input[type="radio"], .form-group input[type="checkbox"] {
    width: auto;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 0;
}

.legal-section h2 {
    color: #272e3b;
    border-bottom: 2px solid #515c7a;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #515c7a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #272e3b;
    margin-bottom: 0.5rem;
}

.contact-item small {
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.office-hours {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #fff;
    border-radius: 5px;
}

.directions,
.contact-faq {
    margin-bottom: 3rem;
}

.directions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Thank You Page */
.thank-you-page {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.thank-you-message {
    margin: 3rem 0;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(39, 46, 59, 0.1);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #515c7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.contact-info-box {
    background: #515c7a;
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.contact-info-box h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.urgent-notice {
    background: #272e3b;
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.urgent-notice h3 {
    color: #fff;
}

.urgent-notice a {
    color: #fff;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.additional-resources {
    margin: 3rem 0;
    text-align: left;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(39, 46, 59, 0.1);
}

.resource-item a {
    color: #515c7a;
    font-weight: bold;
}

.testimonial-preview {
    margin: 3rem 0;
}

.testimonial-preview blockquote {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #515c7a;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-preview cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #515c7a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #272e3b;
    color: #fff;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    background: #515c7a;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
    background: #fff;
    color: #272e3b;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 1rem 0;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option span {
    font-size: 0.9rem;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-modal-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-modal-buttons button:first-child {
    background: #515c7a;
    color: #fff;
}

.cookie-modal-buttons button:last-child {
    background: #ddd;
    color: #333;
}

/* Footer */
footer {
    background: #272e3b;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    background: #515c7a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #272e3b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #515c7a;
    color: #ccc;
}
.services-contact, .legal-advice-cta {
    padding: 50px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    /* Mobile adjustments */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .directions-content {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    section {
        padding: 60px 0;
    }
}

/* Legal Info Content Styles */
.legal-info-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.legal-info-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #515c7a 0%, #272e3b 50%, #515c7a 100%);
}

.info-sections {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 60px;
}

.info-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(81, 92, 122, 0.1);
    border: 1px solid #e8eaf6;
    position: relative;
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(81, 92, 122, 0.15);
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #515c7a, #272e3b);
    border-radius: 20px 20px 0 0;
}

.info-section > h2 {
    color: #272e3b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8eaf6;
    position: relative;
}

.info-section > h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #515c7a, #272e3b);
}

.info-block {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid #515c7a;
    transition: all 0.3s ease;
}

.info-block:hover {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-left-color: #272e3b;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    color: #515c7a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-block h3::before {
    content: '▶';
    color: #272e3b;
    font-size: 1rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.info-block:hover h3::before {
    transform: rotate(90deg);
}

.info-content {
    line-height: 1.7;
}

.info-content h4 {
    color: #272e3b;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #515c7a, #272e3b);
    color: white;
    border-radius: 8px;
    display: inline-block;
    position: relative;
}

.info-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #272e3b;
}

.info-content p {
    color: #444;
    margin-bottom: 15px;
    padding: 0 10px;
}

.info-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.info-content ul li {
    position: relative;
    padding: 12px 0 12px 40px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-content ul li:hover {
    background: rgba(81, 92, 122, 0.05);
    padding-left: 50px;
}

.info-content ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 12px;
    color: #515c7a;
    font-weight: bold;
    font-size: 1.1rem;
}

.info-content ul li strong {
    color: #272e3b;
    font-weight: 600;
}

.info-content ul ul {
    margin: 10px 0;
    padding-left: 20px;
}

.info-content ul ul li {
    padding: 8px 0 8px 30px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f8f8f8;
}

.info-content ul ul li::before {
    content: '→';
    color: #515c7a;
    left: 10px;
}

.info-content ol {
    margin: 20px 0;
    padding-left: 0;
    counter-reset: step-counter;
}

.info-content ol li {
    position: relative;
    padding: 15px 0 15px 60px;
    color: #444;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(81, 92, 122, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 10px;
    border-left: 3px solid #515c7a;
    counter-increment: step-counter;
    transition: all 0.3s ease;
}

.info-content ol li:hover {
    background: linear-gradient(135deg, rgba(81, 92, 122, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    transform: translateX(5px);
}

.info-content ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 15px;
    background: linear-gradient(135deg, #515c7a, #272e3b);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Interactive elements */
.info-block:hover .info-content ul li {
    background: rgba(81, 92, 122, 0.03);
}

.info-section:nth-child(odd) .info-block {
    border-left-color: #272e3b;
}

.info-section:nth-child(even) .info-block h3::before {
    color: #515c7a;
}

/* Responsive improvements for legal info */
@media (max-width: 768px) {
    .legal-info-content {
        padding: 60px 0;
    }
    
    .info-section {
        padding: 25px;
        border-radius: 15px;
    }
    
    .info-block {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .info-section > h2 {
        font-size: 1.6rem;
    }
    
    .info-block h3 {
        font-size: 1.3rem;
    }
    
    .info-content h4 {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
    
    .info-content ol li {
        padding-left: 50px;
    }
    .services-contact, .legal-advice-cta {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .lawyers-grid,
    .advantages-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header-content h1 {
        font-size: 1.75rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .steps-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    /* Legal info mobile styles */
    .legal-info-content {
        padding: 40px 0;
    }
    
    .info-section {
        padding: 20px;
        margin: 0 10px;
    }
    
    .info-block {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .info-section > h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .info-block h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-block h3::before {
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .info-content h4 {
        font-size: 1rem;
        padding: 8px 12px;
        margin: 15px 0 10px 0;
        display: block;
        text-align: center;
    }
    
    .info-content h4::after {
        display: none;
    }
    
    .info-content ul li {
        padding: 10px 0 10px 35px;
        font-size: 0.9rem;
    }
    
    .info-content ul ul li {
        padding: 6px 0 6px 25px;
        font-size: 0.85rem;
    }
    
    .info-content ol li {
        padding-left: 45px;
        font-size: 0.9rem;
    }
    
    .info-content ol li::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
        left: 15px;
    }
    .stats {
        flex-direction: column;
    }
}
