/* --- Global Resets & Modern Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7; /* Increased slightly for better readability */
    color: #343a40;
    background-color: #f9fafb; /* Even lighter gray, almost white */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Main Wrapper & Container --- */
.newspaper-page-wrapper {
    max-width: 860px; /* Adjusted for optimal reading width */
    margin: 50px auto; /* More top/bottom margin */
    padding: 30px 25px; /* More internal padding */
    background-color: #ffffff;
    border-radius: 16px; /* Softer, larger radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); /* Softer, more diffused shadow */
}

.newspaper-container {
    padding: 10px 0; /* Reduced padding here as wrapper has more */
}

/* --- Typography --- */
.newspaper-main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1a202c; /* Slightly darker than default black */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    line-height: 1.35;
    border-bottom: 2px solid #e2e8f0; /* Lighter, more subtle border */
    letter-spacing: -0.6px;
}

h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #2d3748; /* Dark blue-gray, slightly desaturated */
    margin-top: 55px; /* More space before H2 */
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7; /* Very light separator */
    position: relative;
    letter-spacing: -0.3px;
}

h2::before { /* Subtle accent line */
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 3px;
    background-color: #4A90E2; /* A calming, professional blue */
    border-radius: 3px;
}

h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #4a5568; /* Medium gray */
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
}

p {
    margin-bottom: 22px; /* More paragraph spacing */
    font-size: 1.08em; /* Slightly larger base font for paragraphs */
    color: #4a5568; /* Consistent medium gray for text */
    text-align: left;
}

p strong {
    color: #2d3748;
    font-weight: 600;
}

/* --- Links --- */
a {
    color: #4A90E2; /* Consistent professional blue */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out;
    text-decoration-line: underline;
    text-decoration-color: transparent; /* Underline appears on hover */
    text-underline-offset: 3px; /* Space between text and underline */
}

a:hover, a:focus {
    color: #2b6cb0; /* Darker blue on hover */
    text-decoration-color: #2b6cb0; /* Show underline on hover */
}

a.highlight {
    color: #DD6B20; /* A more refined orange */
    font-weight: 600;
    text-decoration-line: none; /* No underline for highlighted special links */
}
a.highlight:hover {
    color: #c05621;
}

/* --- Lists --- */
ul {
    list-style-type: disc; /* Standard disc for simplicity and compatibility */
    margin-left: 20px; /* Standard indentation */
    margin-bottom: 22px;
    padding-left: 15px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.05em; /* Match paragraph text size */
    color: #4a5568;
    padding-left: 5px; /* Small padding for alignment */
}

ul ul { /* Nested lists */
    list-style-type: circle;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* --- Figures and Images --- */
figure {
    margin: 35px 0;
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    display: block;
    margin: 0 auto 12px auto;
    transition: box-shadow 0.3s ease-out; /* Transition for hover effect */
}

figure img:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Slightly more prominent shadow on hover */
}

figcaption {
    font-size: 0.9em;
    color: #718096; /* Lighter gray for captions */
    font-style: normal;
    margin-top: 10px;
}

/* --- Content Sections --- */
.newspaper-content-columns {
    /* No column styling */
}

/* --- "Bảng Giá" Section (Callout Box) --- */
.newspaper-table-section {
    margin: 45px 0;
    padding: 25px 30px;
    background-color: #f0f7ff; /* Very light, almost white-blue */
    border: 1px solid #cfe2f3; /* Subtle border */
    border-left: 4px solid #4A90E2; /* Accent border */
    border-radius: 8px;
}

.newspaper-table-section h3 {
    margin-top: 0;
    border-bottom: none;
    color: #2c5282; /* Darker blue for heading in this box */
}
.newspaper-table-section h3::before {
    display: none;
}

.newspaper-table-section p {
    font-size: 1em;
    color: #3b4a5c;
}
.newspaper-table-section p i { /* Style for italics if used for emphasis */
    color: #2c5282;
    font-style: normal; /* Often better to use bold or color for emphasis */
}
.newspaper-table-section p i a { /* If the italic text is a link */
    font-weight: 500;
}


/* --- Conclusion and Final CTA Section --- */
.newspaper-conclusion-cta {
    margin-top: 60px;
    padding: 35px 30px; /* More padding */
    background-color: #2d3748; /* Dark gray-blue background */
    color: #e2e8f0; /* Light text for contrast */
    border-radius: 12px;
    text-align: center;
}

.newspaper-conclusion-cta h2,
.newspaper-conclusion-cta h3 {
    color: #ffffff;
    border-bottom: none;
    letter-spacing: -0.2px;
}
.newspaper-conclusion-cta h2::before, /* Remove accent lines for these headings */
.newspaper-conclusion-cta h3::before {
    display: none;
}

.newspaper-conclusion-cta p {
    color: #cbd5e0; /* Slightly lighter than main text on this bg */
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: center;
}
.newspaper-conclusion-cta a {
    color: #63b3ed; /* Brighter blue for links on dark bg */
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-color: #63b3ed;
}
.newspaper-conclusion-cta a:hover {
    color: #90cdf4; /* Lighter blue on hover */
    text-decoration-color: #90cdf4;
}

/* --- Modern CTA Button --- */
.newspaper-cta-button {
    display: inline-block;
    background-color: #4A90E2; /* Professional blue */
    color: #ffffff !important;
    padding: 15px 35px; /* Generous padding */
    font-size: 1.1em;
    font-weight: 600; /* Bolder */
    text-decoration: none !important;
    border-radius: 8px; /* Standard rounded corners */
    text-align: center;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3); /* Subtle shadow related to button color */
    margin-top: 20px;
    border: none;
    letter-spacing: 0.5px; /* Slight letter spacing */
}

.newspaper-cta-button:hover,
.newspaper-cta-button:focus {
    background-color: #357ABD; /* Darker blue */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* --- Links styled as subtle buttons/tags within content --- */
p > a[href="/lap-mang-fpt-dong-nai"] i,
p > a[href="/lap-mang-fpt-dong-nai"] {
    font-style: normal;
    display: inline-block;
    margin-top: 8px; /* Reduced margin */
    padding: 6px 14px;
    background-color: #eef2f7; /* Very light gray, almost background-like */
    color: #4A90E2 !important; /* Ensure link color */
    border: 1px solid #d3dfea; /* Subtle border */
    border-radius: 6px; /* Less rounded than pill */
    text-decoration: none !important;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.2s ease;
}

p > a[href="/lap-mang-fpt-dong-nai"]:hover i,
p > a[href="/lap-mang-fpt-dong-nai"]:hover {
    background-color: #dbe9f5; /* Slightly darker on hover */
    color: #2b6cb0 !important;
    border-color: #b8cce0;
    transform: translateY(-1px);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .newspaper-page-wrapper {
        margin: 30px 15px; /* Adjust margin for smaller screens */
        padding: 25px 20px;
        border-radius: 12px;
    }
    .newspaper-main-title {
        font-size: 2.1em;
    }
    h2 {
        font-size: 1.65em;
        margin-top: 45px;
    }
    h3 {
        font-size: 1.3em;
    }
    p {
        font-size: 1.03em;
    }
    .newspaper-cta-button {
        padding: 14px 30px;
        font-size: 1.05em;
    }
}

@media (max-width: 480px) {
    body {
        line-height: 1.65;
    }
    .newspaper-page-wrapper {
        margin: 20px 10px;
        padding: 20px 15px;
        border-radius: 8px;
    }
    .newspaper-main-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    h2 {
        font-size: 1.5em;
        margin-top: 40px;
    }
    h2::before {
        width: 40px;
        height: 2.5px;
    }
    .newspaper-conclusion-cta {
        padding: 25px 20px;
    }
    .newspaper-cta-button {
        width: 100%; /* Full width button on small screens */
        padding: 15px;
    }
    p > a[href="/lap-mang-fpt-dong-nai"] {
        font-size: 0.85em; /* Adjust size of inline buttons */
        padding: 5px 12px;
    }
}