/* Global Styles */
:root {
    --primary-color: #002B49; /* Dark Blue typical of corporate/legal */
    --secondary-color: #D4A017; /* Gold/Accent color */
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.logo-subtitle {
    font-family: var(--font-primary);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-top: 2px;
    padding-left: 2px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--secondary-color);
}

.lang-switch {
    font-weight: 600;
    color: #888;
    font-size: 12px;
    cursor: default;
}

.lang-switch span {
    cursor: pointer;
    transition: color 0.3s;
}

.lang-switch span.active,
.lang-switch span:hover {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,43,73,0.95), rgba(0,43,73,0.85));
    z-index: 1;
}

.hero-container-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-text {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 60px;
}

.hero-badge-center {
    opacity: 0.9;
    transition: opacity 0.3s;
}

.hero-badge-center:hover {
    opacity: 1;
}

.badge-img {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.2);
}

/* Insights Section */
.insights {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    color: var(--primary-color);
}

.see-all {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 14px;
}

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

.insight-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-top: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.insight-card .category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 18px;
    font-weight: 700;
}

.insight-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.45;
    font-weight: 600;
}

.insight-card .date {
    font-size: 13px;
    color: #888;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: #ccc;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: 0;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 32px;
    }
}
