h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #4a4a4a;
}

li {
    margin-bottom: 0.5rem;
}

.breadcrumb{
    width: 90%;
    justify-content: center;
    text-align: center;
}

.hero {
    position: relative;
    min-height: 400px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 40px 20px;
}

.hero img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 60px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    word-break: break-word;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 0 auto 24px;
}

.main-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
    gap: 48px;
}

.article-body {
    min-width: 0;
}

.article-body h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.article-body h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ffd400;
}

.article-image {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
    margin: 32px 0;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.sidebar-widget {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #00000014;
    border-radius: 5px;
    font-family: inherit;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

.feedback-input2 {
    width: 100%;
    background: white;
    border: 1px solid #00000014;
    border-radius: 5px;
    padding: 12px;
    color: #999;
    box-sizing: border-box;
}

.feedback-input2:not(textarea.feedback-input2) {
    height: 48px;
}

/* =========================
   LARGE TABLET / SMALL LAPTOP
   ========================= */
@media (max-width: 1024px) {
    .main-content {
        padding: 64px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sidebar-widget {
        position: static;
        top: auto;
    }

    .hero {
        min-height: 340px;
    }

    .hero-content {
        margin-top: 40px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .article-body h2 {
        font-size: 26px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 768px) {
    .hero {
        min-height: 300px;
        padding: 32px 16px;
    }

    .hero-content {
        margin-top: 20px;
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-divider {
        width: 50px;
        margin: 0 auto 20px;
    }

    .main-content {
        padding: 48px 0;
    }

    .content-grid {
        gap: 24px;
    }

    .article-body h2 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 18px;
    }

    .article-image {
        margin: 24px 0;
    }

    .sidebar-widget {
        padding: 24px;
        border-radius: 6px;
    }

    .widget-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    p,
    ul {
        margin-bottom: 1.25rem;
    }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 480px) {
    .hero {
        min-height: 260px;
        padding: 24px 12px;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .main-content {
        padding: 36px 0;
    }

    .content-grid {
        gap: 20px;
    }

    .article-body h2 {
        font-size: 21px;
        margin-top: 28px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .article-body h2::after {
        width: 32px;
        height: 2px;
    }

    .sidebar-widget {
        padding: 18px;
    }

    .widget-title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .form-control,
    .feedback-input2 {
        padding: 11px;
        font-size: 16px; /* prevents zoom on iPhone */
    }

    .feedback-input2:not(textarea.feedback-input2) {
        height: 46px;
    }

    p,
    ul,
    li {
        font-size: 15px;
    }
}