/* ---
   Theme: Minimalist Clean
   Font: Inter
   Primary Color (Accent): #007bff
   Text Color: #212529
   Subtle Text Color: #6c757d
   Background Color: #f8f9fa
   Card/Widget Background: #ffffff
   Border Color: #dee2e6
   --- */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* --- Base & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #f8f9fa;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #212529;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.25rem; }

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

/* --- Layout & Container --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-area {
    flex: 1;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .grid-layout {
        grid-template-columns: 3fr 1fr;
    }
}

/* --- Header & Navigation --- */
.site-header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.site-title a {
    color: #212529;
    text-decoration: none;
}

.site-title a:hover {
    color: #007bff;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 600;
    color: #212529;
    font-size: 1rem;
    text-decoration: none;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
    color: #007bff;
    border-bottom-color: #007bff;
}

/* --- Main Content & Articles --- */
.page-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.page-intro h1 {
    margin-bottom: 1rem;
}

.page-intro p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 2rem;
    font-size: 2.25rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    flex-grow: 1;
}

.card-content h3 a {
    color: #212529;
    text-decoration: none;
}
.card-content h3 a:hover {
    color: #007bff;
}

.card-content p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
}

/* Article Page Specifics */
.article-full {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.article-header {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.25rem;
}

.article-meta {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: 600;
}

.article-content h2 {
    margin-top: 2rem;
    font-size: 1.75rem;
}

.article-content h3 {
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.cta-section {
    background-color: #e7f3ff;
    border-left: 4px solid #007bff;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.cta-section p {
    margin-bottom: 1rem;
}

/* --- Sidebar --- */
.sidebar-widget {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.sidebar-widget h4 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.sidebar-widget ul li {
    margin-bottom: 0.5rem;
}

.sidebar-widget ul li a {
    color: #212529;
    font-weight: 400;
    text-decoration: none;
    transition: padding-left 0.2s ease;
}

.sidebar-widget ul li a:hover {
    color: #007bff;
    padding-left: 5px;
}

.sidebar-widget p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* --- Footer --- */
.site-footer {
    background-color: #ffffff;
    color: #6c757d;
    padding: 2.5rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid #dee2e6;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #212529;
}

/* --- Contact & Offers Pages --- */
.page-content-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #212529;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info p {
    margin-bottom: 0.25rem;
}

.offers-list h2 {
    margin-top: 2rem;
}

.offers-list ul {
    list-style-type: none;
    padding-left: 0;
}

.offers-list ul li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}
