/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Encabezado */
header {
    background-color: #1a3c6e;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
}

.logo span {
    color: #d4af37;
}

.contact-header p {
    margin: 5px 0;
    font-size: 14px;
}

/* Navegación */
nav {
    background-color: #2c5282;
}

.nav-tabs {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.nav-tabs li {
    position: relative;
}

.nav-tabs a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    text-align: center;
}

.nav-tabs a:hover {
    background-color: #3b6aa0;
}

.nav-tabs a.active {
    background-color: #d4af37;
    color: #1a3c6e;
}

/* Sección de banner */
.banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: #d4af37;
    color: #1a3c6e;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c19b2e;
}

/* Secciones de contenido */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a3c6e;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 15px auto;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 300px;
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #1a3c6e;
    margin-bottom: 15px;
}

   /* Estilos para la sección About Me con foto */
        .about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: flex-start;
        }

        .profile-photo {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .profile-photo img {
            width: 100%;
            max-width: 350px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

/* Footer */
footer {
    background-color: #1a3c6e;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1 1 300px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #d4af37;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .banner {
        padding: 60px 0;
    }
    
    .banner h2 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    /* Botón flotante para volver a pestañas */
.back-to-tabs {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #d4af37;
    color: #1a3c6e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    font-weight: bold;
    font-size: 24px;
}

.back-to-tabs.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.back-to-tabs:hover {
    background-color: #c19b2e;
    transform: scale(1.1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .back-to-tabs {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
}
/* Mejoras para la sección de Tax Services */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.service-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
    position: relative;
}

.service-card li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tax-cta {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border-left: 4px solid #d4af37;
}

.tax-cta h2 {
    color: #1a3c6e;
    margin-bottom: 15px;
}

.tax-cta p {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
 /* Estilos específicos para Business Litigation */
        .litigation-header {
            background: linear-gradient(rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .litigation-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
            font-size: 18px;
            line-height: 1.7;
        }
        
        .litigation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .litigation-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .litigation-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .litigation-icon {
            background-color: #1a3c6e;
            color: white;
            font-size: 24px;
            padding: 20px;
            text-align: center;
        }
        
        .litigation-content {
            padding: 25px;
        }
        
        .litigation-content h3 {
            color: #1a3c6e;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .litigation-content ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .litigation-content li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .litigation-content li:before {
            content: "•";
            color: #d4af37;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .case-studies {
            background-color: #f8f9fa;
            padding: 50px 0;
            margin: 50px 0;
        }
        
        .case-study {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #d4af37;
        }
        
        .case-study h3 {
            color: #1a3c6e;
            margin-bottom: 15px;
        }
        
        .litigation-cta {
            text-align: center;
            padding: 40px;
            background: linear-gradient(to right, #1a3c6e, #2c5282);
            color: white;
            border-radius: 8px;
            margin-top: 40px;
        }
        
        .litigation-cta h2 {
            margin-bottom: 20px;
            color: white;
        }
        
        .litigation-cta .btn {
            background-color: #d4af37;
            color: #1a3c6e;
        }
        
        @media (max-width: 768px) {
            .litigation-grid {
                grid-template-columns: 1fr;
            }
            
            .litigation-header {
                padding: 40px 0;
            }
        }
        /* Estilos específicos para Tax Litigation */
.tax-litigation-section {
    background-color: #fafafa;
}

.litigation-header {
    background: linear-gradient(rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.9)), url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

.litigation-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.litigation-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.litigation-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.litigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.litigation-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #d4af37;
}

.litigation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.litigation-icon {
    background-color: #1a3c6e;
    color: white;
    font-size: 24px;
    padding: 20px;
    text-align: center;
}

.litigation-content {
    padding: 25px;
}

.litigation-content h2 {
    color: #1a3c6e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.litigation-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.litigation-content li {
    margin-bottom: 10px;
    position: relative;
}

.litigation-content li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.case-studies {
    background-color: #f0f7ff;
    padding: 50px 0;
    margin: 50px 0;
    border-radius: 8px;
}

.case-study {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #d4af37;
}

.case-study h3 {
    color: #1a3c6e;
    margin-bottom: 15px;
}

.process-section {
    margin: 50px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.process-step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #d4af37;
    color: #1a3c6e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    color: #1a3c6e;
    margin: 15px 0 10px;
}

.litigation-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(to right, #1a3c6e, #2c5282);
    color: white;
    border-radius: 8px;
    margin-top: 40px;
}

.litigation-cta h2 {
    margin-bottom: 20px;
    color: white;
}

.litigation-cta .btn {
    background-color: #d4af37;
    color: #1a3c6e;
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .litigation-grid {
        grid-template-columns: 1fr;
    }
    
    .litigation-header {
        padding: 40px 20px;
    }
    
    .litigation-header h1 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .litigation-cta {
        padding: 30px 20px;
    }
}