/* =====================================================
   HOMVUK Landing Pages - Child Theme Styles
   Additional styles for landing page templates
   ===================================================== */

/* Landing Page Layout */
.homvuk-landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.homvuk-content-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

.homvuk-content-section h2 {
    color: #1a3a5c;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.homvuk-content-section h3 {
    color: #1a3a5c;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.homvuk-content-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.homvuk-content-section ul {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px 20px;
    padding: 0;
}

.homvuk-content-section ul li {
    margin-bottom: 10px;
}

.homvuk-content-section a {
    color: #2c6fbb;
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 111, 187, 0.3);
    transition: all 0.3s ease;
}

.homvuk-content-section a:hover {
    color: #1a3a5c;
    border-bottom-color: #1a3a5c;
}

/* Blog Page Specific */
.homvuk-blog-page .homvuk-article {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.homvuk-blog-page .homvuk-article h2 {
    font-size: 28px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.homvuk-blog-page .homvuk-article h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.homvuk-blog-page .homvuk-article h3 {
    font-size: 20px;
    margin-top: 30px;
}

/* Responsive adjustments for landing pages */
@media (max-width: 768px) {
    .homvuk-landing-page {
        padding: 10px;
    }

    .homvuk-content-section {
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .homvuk-content-section h2 {
        font-size: 24px;
    }

    .homvuk-content-section h3 {
        font-size: 18px;
    }

    .homvuk-content-section p,
    .homvuk-content-section ul {
        font-size: 15px;
    }
}
