/* Header positioning fixes */
body {
    margin: 0;
    padding: 0;
}

.header {
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Article Header Text Centering */
.article-header {
    text-align: center;
}

.article-header .container {
    text-align: center;
}

.article-header h1,
.article-header p,
.article-header div {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Professional Article Header Styling */
.article-header {
    background: linear-gradient(135deg, #3a4a5c 0%, #2c5aa0 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.article-header .container {
    position: relative;
    z-index: 2;
}

.article-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.article-header p {
    font-size: clamp(1.2rem, 3vw, 1.6rem) !important;
    font-weight: 300 !important;
    opacity: 0.95 !important;
    margin-bottom: 40px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-header div {
    font-size: 1rem !important;
    opacity: 0.85 !important;
    font-weight: 400 !important;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Article Header Container Width Fix */
.article-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.article-header h1 {
    max-width: none !important;
    width: 100% !important;
}

.article-header p {
    max-width: none !important;
    width: 100% !important;
}

.article-header div {
    max-width: none !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .article-header .container {
        padding: 0 20px;
    }
}
/* Article Header Width Fix - Match Menu Container */
.article-header .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.article-header h1 {
    max-width: 100% !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.article-header p {
    max-width: 100% !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.article-header div {
    max-width: 100% !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
