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

:root {
    --primary-color: #0a2540;
    --secondary-color: #1a365d;
    --accent-color: #00d4ff;
    --accent-secondary: #0099ff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #7a8695;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e8eef7;
    --warning-bg: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    --warning-border: #d39e00;
    --warning-text: #664d03;
    --shadow-sm: 0 4px 12px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a{
    text-decoration: none;
    color: initial;
}
.disclaimer-banner {
    background: var(--warning-bg);
    border-bottom: 3px solid var(--warning-border);
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    color: var(--warning-text);
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    z-index: 1001;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.desktop-nav a {
    color: #e0e7ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    letter-spacing: 0.3px;
    padding: 8px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent-color);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5a8c 50%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 50px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.3);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.98;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    max-width: 60%;
    margin: 0 auto;
}

.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
}

/* Section Title */
.section-title {
    text-align: center;
    margin: 80px 0 50px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    margin: 25px auto 0;
    border-radius: 3px;
    animation: expandWidth 0.6s ease forwards;
    transform: scaleX(0);
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.category-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    cursor: pointer;
    border-left: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-secondary);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover h3 {
    color: var(--accent-secondary);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.category-card p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.category-card .btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-card .btn-link:hover {
    color: var(--accent-secondary);
    gap: 14px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.article-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--accent-color);
    position: relative;
}

.article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-secondary);
}

.article-card:hover::after {
    opacity: 1;
}

.article-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    position: relative;
    overflow: hidden;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)" /></svg>');
}

.article-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #0a2540, #1a365d);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.article-card h3 {
    color: #0a2540;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}

.article-card p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #7a8695;
    margin-bottom: 18px;
    font-weight: 600;
}

.article-card .read-more {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.article-card .read-more:hover {
    color: #00d4ff;
    gap: 14px;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin: 60px 0;
}

.btn-view-all {
    padding: 18px 55px;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.25);
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.35);
}

/* Lawyers Grid */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.lawyer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid #00d4ff;
    border: 1px solid #e8eef7;
    border-left: 5px solid #00d4ff;
}

.lawyer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.lawyer-header {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.lawyer-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.lawyer-contact {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.5;
}

.lawyer-body {
    padding: 30px;
}

.lawyer-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    color: #2d3748;
    line-height: 1.6;
}

.benefit-item::before {
    content: '✓';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0a2540, #1a365d);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 900;
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 14px;
}

.lawyer-footer {
    padding: 0 30px 30px;
}

.lawyer-footer .btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
    display: block;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.lawyer-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.3);
}

/* AdSense Placeholder */
.adsense-placeholder {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border: 2px dashed #00d4ff;
    text-align: center;
    border-radius: .75rem;
    color: #4a5568;
    font-size: .9375rem;
}

.adsense-placeholder p {
    margin-bottom: .75rem;
    font-weight: 600;
    color: #0a2540;
}

.ad_box{
    width: 20rem;
    height: 15.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;

}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.page-section h1,
.page-section1 h1 {
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
}

.page-section h2,
.page-section1 h2 {
    color: #0a2540;
    margin-top: 2.5rem;
    margin-bottom: 1.5625rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
}

.page-section p,
.page-section1 p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: 1rem;
}

.page-section ul,
.page-section1 ul,
.page-section ol,
.page-section1 ol {
    margin-left: 1.875rem;
    margin-bottom: 1.5625rem;
}

.page-section li,
.page-section1 li {
    margin-bottom: .875rem;
    color: #2d3748;
    line-height: 1.8;
    font-size: 1rem;
}
.article-detail {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    margin-bottom: 3.125rem;
    border: 1px solid #e8eef7;
}

.article-detail-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.article-detail-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    line-height: 1.2;
}

.article-detail-meta {
    display: flex;
    justify-content: center;
    gap: 35px;
    font-size: 15px;
    opacity: 0.95;
    flex-wrap: wrap;
    font-weight: 600;
}

.article-detail-body {
    padding: 60px 50px;
    background: white;
}

.article-detail-body p {
    margin-bottom: 25px;
    line-height: 2;
    font-size: 17px;
    color: #2d3748;
}

.article-detail-body h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    color: #0a2540;
}

.article-detail-body ul,
.article-detail-body ol {
    margin-left: 35px;
    margin-bottom: 25px;
}

.article-detail-body li {
    margin-bottom: 15px;
    line-height: 1.9;
    font-size: 17px;
    color: #2d3748;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a2540;
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 35px;
    transition: all 0.3s;
    font-size: 16px;
}

.back-button:hover {
    color: #00d4ff;
    gap: 14px;
}

/* Related Articles */
.related-articles {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #e8eef7;
}

.related-articles h3 {
    font-size: 28px;
    color: #0a2540;
    margin-bottom: 40px;
    font-weight: 800;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    padding: 80px 20px 40px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

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

.footer-section a {
    color: #b8c9d9;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-bottom: 14px;
    transition: color 0.3s;
    font-weight: 500;
}

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

.footer-section p {
    color: #b8c9d9;
    font-size: 15px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #b8c9d9;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
    max-width: 750px;
    margin: 40px auto;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    border: 1px solid #e8eef7;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: #0a2540;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8eef7;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: 500;
    color: #1a1a1a;
    background-color: #f5f7fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    border: none;
    border-radius: .625rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.0625rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.3);
}

/* Banner Styles */
.banner-container {
    margin: 3.75rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: 31.25rem;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
}

.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-container:hover img {
    transform: scale(1.02);
}

/* Disclaimer Module */
.disclaimer-module {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #d39e00;
    border-radius: 16px;
    padding: 50px;
    margin: 80px 0;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.disclaimer-module-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.disclaimer-icon {
    font-size: 56px;
    flex-shrink: 0;
    line-height: 1;
}

.disclaimer-module h2 {
    color: #664d03;
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 900;
    margin-top: 0;
}

.disclaimer-module p {
    color: #664d03;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 600;
}

.disclaimer-module p:last-child {
    margin-bottom: 0;
}

/* FAQ Styles */
.faq-container {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    border: 1px solid #e8eef7;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e8eef7;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    font-weight: 700;
    font-size: 16px;
    color: #0a2540;
    user-select: none;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-toggle {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 0;
    color: #2d3748;
    line-height: 1.9;
    font-size: 15px;
}

.faq-answer.active {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 50px 20px;
    }

    .hero {
        padding: 80px 40px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .article-detail-body {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 15px;
        font-size: 13px;
        justify-content: center;
    }

    .container {
        padding: 40px 15px;
    }

    .hero {
        padding: 60px 25px;
        margin-bottom: 60px;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-title p {
        font-size: 16px;
    }

    .categories-grid,
    .articles-grid,
    .lawyers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card,
    .lawyer-card {
        padding: 30px;
    }

    .category-card h3 {
        font-size: 22px;
    }

    .category-card p {
        font-size: 15px;
    }

    .article-card h3 {
        font-size: 18px;
    }

    .article-card p {
        font-size: 14px;
    }

    .page-section h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .page-section h2 {
        font-size: 26px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-section p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .page-section li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .article-detail-hero {
        padding: 50px 25px;
    }

    .article-detail-hero h1 {
        font-size: 32px;
    }

    .article-detail-meta {
        gap: 20px;
        font-size: 13px;
    }

    .article-detail-body {
        padding: 35px 20px;
    }

    .article-detail-body p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .article-detail-body li {
        font-size: 15px;
    }

    .contact-form {
        padding: 35px 20px;
        margin: 30px 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 15px;
    }

    .form-submit {
        padding: 14px;
        font-size: 15px;
    }

    .banner-container {
        height: 220px;
        margin: 40px 0;
    }

    .disclaimer-module {
        padding: 35px 20px;
        margin: 60px 0;
    }

    .disclaimer-module-content {
        gap: 15px;
    }

    .disclaimer-icon {
        font-size: 40px;
    }

    .disclaimer-module h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .disclaimer-module p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .faq-container {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 12px 0;
        font-size: 15px;
    }

    .faq-answer {
        padding: 12px 0;
        font-size: 14px;
    }

    .footer-container {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section a {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 30px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--accent-color);
}

.cookie-consent-banner.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #e0e7ff;
}

.cookie-consent-text strong {
    display: block;
    font-size: 17px;
    margin-bottom: 10px;
    color: white;
}

.cookie-consent-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    letter-spacing: 0.3px;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-cookie-decline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
        max-width: 150px;
    }

    .cookie-consent-banner {
        padding: 20px 15px;
    }
}

/* Mobile Sidebar */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
}

.mobile-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 9999;
    transition: left var(--transition-slow);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.show {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.sidebar-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.sidebar-close:hover {
    transform: scale(1.1);
}

.sidebar-close svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: #e0e7ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border-left: 4px solid transparent;
    letter-spacing: 0.3px;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
    color: white;
    padding-left: 30px;
}

.sidebar-link.active {
    background: rgba(0, 212, 255, 0.15);
    border-left-color: var(--accent-color);
    color: white;
}

.sidebar-link span {
    margin-right: 12px;
    font-size: 18px;
}

.sidebar-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Responsive - Show mobile menu toggle on tablets and phones */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .header-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
        max-width: 150px;
    }

    .cookie-consent-banner {
        padding: 20px 15px;
    }

    .mobile-sidebar {
        width: 280px;
        left: -280px;
    }

    .sidebar-header {
        padding: 20px;
    }

    .sidebar-logo {
        font-size: 20px;
    }

    .sidebar-link {
        padding: 14px 20px;
        font-size: 15px;
    }

    .sidebar-link:hover,
    .sidebar-link.active {
        padding-left: 25px;
    }

    .sidebar-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 22px;
    }

    .mobile-sidebar {
        width: 100%;
        left: -100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .logo {
        font-size: 24px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
    }

    .container {
        padding: 30px 10px;
    }

    .hero {
        padding: 50px 15px;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 14px;
    }

    .category-card,
    .lawyer-card {
        padding: 20px;
    }

    .category-card h3 {
        font-size: 20px;
    }

    .page-section h1 {
        font-size: 28px;
    }

    .page-section h2 {
        font-size: 22px;
    }

    .page-section p {
        font-size: 14px;
    }

    .banner-container {
        height: 180px;
    }

    .disclaimer-module {
        padding: 25px 15px;
    }

    .disclaimer-icon {
        font-size: 32px;
    }

    .disclaimer-module h2 {
        font-size: 20px;
    }

    .disclaimer-module p {
        font-size: 14px;
    }
}