:root {
    --brand: #0b3d91;
    --accent: #f0a500;
    --text: #3b3b3b;
    --muted: #777777;
    --bg: #f8fafc;
    --header: #101019;
}

* {
    box-sizing: border-box;
}

/* Inner Page Header Hero Section */
.hero-mini {
    background-image: linear-gradient(rgba(16, 16, 25, 0.85), rgba(16, 16, 25, 0.85)), url('../../uploads/2023/12/sefar-teknik-footer-img-1-scaled.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
    padding-top: 130px;
    text-align: center;
    border-bottom: 3px solid var(--accent);
    margin-bottom: 0;
}

.hero-mini .wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-mini h1 {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.hero-mini .breadcrumb {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-top: 10px;
    justify-content: center;
    display: flex;
    gap: 8px;
}

.hero-mini .breadcrumb a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-mini .breadcrumb a:hover {
    color: var(--accent) !important;
}

/* Main Body Layout */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

.content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text);
    font-family: 'Open Sans', Arial, sans-serif;
}

.content h1, .content h2, .content h3, .content h4 {
    color: var(--brand);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
}

.content h2 { font-size: 1.8rem; }
.content h3 { font-size: 1.5rem; }
.content h4 { font-size: 1.25rem; }

.content p {
    margin-bottom: 24px;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    margin: 25px auto;
    display: block;
}

/* Static Forms Styling */
.static-form {
    background: #ffffff;
    padding: 35px;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    max-width: 700px;
    margin: 30px 0;
}

.static-form label {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a24;
}

.static-form input, .static-form select, .static-form textarea {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #334155;
    background-color: #ffffff;
    margin-top: 6px;
    transition: all 0.2s ease;
}

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

.static-form input:focus, .static-form select:focus, .static-form textarea:focus {
    border-color: var(--brand);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.15);
}

.static-form .btn-submit {
    background: var(--brand);
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.static-form .btn-submit:hover {
    background: var(--accent);
    color: #ffffff;
}

/* Card List Layout for Blog Posts / Cases */
.page-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.page-list a {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.45;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.page-list a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand);
    transition: all 0.3s ease;
}

.page-list a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(11, 61, 145, 0.15);
    color: var(--brand);
    border-color: #cbd5e1;
}

.page-list a:hover:before {
    background: var(--accent);
}

/* Simple note block */
.note {
    background: #fff8e6;
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    border-radius: 0 4px 4px 0;
}
