/* ==========================================
   DIALBIZ PREMIUM PAGE DESIGN
   ========================================== */

body.page {
    background: #f5f7fb;
    font-family: Inter, "Segoe UI", sans-serif;
}


/* HEADER SECTION */

.db-page-header {
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.db-page-header:before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -250px;
    right: -120px;
}

.db-page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.db-page-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.db-page-header h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}

.db-page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
}


/* CONTENT CARD */

.db-page-content {
    max-width: 1100px;
    margin: -50px auto 60px;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(15,23,42,.08);
    position: relative;
    z-index: 5;
}


/* TEXT */

.db-page-content p {
    color: #475569;
    font-size: 18px;
    line-height: 1.95;
    margin-bottom: 22px;
}


/* HEADINGS */

.db-page-content h2 {
    color: #0f172a;
    font-size: 34px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 14px;
}

.db-page-content h2:after {
    content: '';
    width: 70px;
    height: 4px;
    background: #2563eb;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 50px;
}

.db-page-content h3 {
    color: #1d4ed8;
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.db-page-content h4 {
    color: #334155;
    font-size: 22px;
}


/* LINKS */

.db-page-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.db-page-content a:hover {
    text-decoration: underline;
}


/* LISTS */

.db-page-content ul,
.db-page-content ol {
    padding-left: 25px;
    margin: 20px 0;
}

.db-page-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #475569;
}


/* IMAGES */

.db-page-content img {
    width: 100%;
    border-radius: 18px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.db-page-content img:hover {
    transform: scale(1.02);
}


/* TABLES */

.db-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.db-page-content th {
    background: #2563eb;
    color: #fff;
    padding: 14px;
}

.db-page-content td {
    border: 1px solid #e5e7eb;
    padding: 14px;
}


/* QUOTES */

.db-page-content blockquote {
    border-left: 5px solid #2563eb;
    background: #f8fafc;
    padding: 22px;
    margin: 30px 0;
    border-radius: 12px;
    font-style: italic;
}


/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {

    .db-page {
        padding: 0 8px;
        margin: 15px auto;
    }

    .db-page-title {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .db-page-title h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .db-page-content {
        padding: 18px;
        border-radius: 12px;
    }

    .db-page-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .db-page-content h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .db-page-content h3 {
        font-size: 20px;
    }

    .db-page-content img {
        border-radius: 10px;
        margin: 18px 0;
    }

    .db-page-content table {
        display: block;
        overflow-x: auto;
    }
}