:root {
    --page-bg: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    --primary-color: #11A84E; /* Main brand color */
    --secondary-color: #22C768; /* Auxiliary brand color */
}

.page-blog-68gb-security-tips {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    padding-top: 0; /* body already handles padding-top */
}

.page-blog-68gb-security-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-68gb-security-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensures image is above content */
    align-items: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
    background-color: var(--deep-green); /* A darker green for the hero section background */
    overflow: hidden;
}

.page-blog-68gb-security-tips__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure it doesn't overflow */
    margin-bottom: 30px; /* Space between image and content */
    text-align: center;
}

.page-blog-68gb-security-tips__hero-image {
    width: 100%;
    max-width: 1200px;
    height: 675px; /* Fixed height for 16:9 aspect ratio 1200x675 */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-68gb-security-tips__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--text-main);
}

.page-blog-68gb-security-tips__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-blog-68gb-security-tips__lead-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}