/* ==========================
   Google Font
========================== */

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

/* ==========================
   Reset
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #222;
}

/* ==========================
   Container
========================== */

.container {
    width: min(1320px, 94%);
    margin: auto;
}

/* ==========================
   Header
========================== */

.header {

    background: #ffffff;

    border-bottom: 1px solid #ececec;

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow: 0 2px 3px rgba(0, 0, 0, .05);
}

.header .container {

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

/* ==========================
   Logo
========================== */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;
}

.logo-icon {

    font-size: 30px;
}

.logo-text {

    font-size: 24px;

    font-weight: 700;

    color: #4735e5;
}

/* ==========================
   Navigation
========================== */

.nav-links {

    display: flex;

    list-style: none;

    gap: 32px;
}

.nav-links a {

    text-decoration: none;

    color: #333;

    font-weight: 500;

    transition: .25s;
}

/* ==========================
   All PDF Tools
========================== */

.tools-link {

    display: inline-flex;

    align-items: center;

    gap: 4px;

}

.ico--down::before {

    content: "▼";

    display: inline-block;

    font-size: 16px;

    color: #666;

    margin-left: 3px;

    position: relative;

    transition: transform .25s ease, color .25s ease;

}

.tools-link:hover .ico--down::before {

    transform: rotate(180deg);

    color: #4735e5;

}

.ico {

    display: inline-flex;

    align-items: center;

    justify-content: center;

}

.nav-links a:hover {

    color: #4735e5;
}

/* ==========================
   PDF Tools Dropdown
========================== */

.tools-dropdown {

    position: relative;

}

.tools-menu {

    position: absolute;

    top: calc(100% + 18px);

    right: 0;

    min-width: 125px;

    width: max-content;

    background: #fff;

    border-radius: 16px;

    padding: 12px 0;

    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);

    border: 1px solid #ececec;

    opacity: 0;

    visibility: hidden;

    transform: translateY(12px);

    transition: all .25s ease;

    z-index: 1000;

}

.tools-menu a {

    display: block;

    display: block;

    padding: 10px 18px;

    white-space: nowrap;

    color: #333;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: .2s;

}

.tools-menu a:hover {

    background: #f7f7ff;

    color: #4735e5;

}

/* ==========================
   Active Tool
========================== */

.tools-menu .active-tool {

    background: #eef2ff;

    color: #4735e5;

    font-weight: 600;

    border-left: 3px solid #4735e5;

}

.tools-dropdown:hover .tools-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

/* ==========================
   Mobile Button
========================== */

.menu-btn {

    display: none;

    border: none;

    background: none;

    font-size: 28px;

    cursor: pointer;
}

/* ==========================
   Hero Section
========================== */

.hero {

    padding: 48px 0 70px;

    text-align: center;
}

.hero-content {

    max-width: 760px;

    margin: auto;
}

.hero h1 {

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    color: #222;

    letter-spacing: -.5px;

    margin-bottom: 14px;

}

.hero p {

    margin: 0 auto 24px;

    max-width: 620px;

    font-size: 17px;

    color: #666;

    line-height: 1.6;

    font-weight: 400;
}

/* ==========================
   Primary Button
========================== */

.primary-btn {

    background: #4735e5;

    color: #fff;

    border: none;

    border-radius: 10px;

    padding: 18px 42px;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.primary-btn:hover {

    background: #c62828;

    transform: translateY(-2px);
}

/* ==========================
   Upload Card
========================== */

.upload-card {

    margin-top: 28px;

    background: #ffffff;

    border: 2px dashed #d8d8d8;

    border-radius: 20px;

    padding: 28px 30px;

    transition: border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);

}

.upload-card:hover {

    border-color: #4735e5;

    background: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(71, 53, 229, .10);

}

.upload-icon {

    font-size: 60px;

    margin-bottom: 12px;

    line-height: 1;

}

.upload-card h3 {

    font-size: 26px;

    font-weight: 700;

    color: #222;

    margin-bottom: 2px;

    line-height: 1.3;

}

.upload-card p {

    margin: 4px 0;

    color: #666;

    font-size: 15px;

    line-height: 1.5;

}

.supported-files {

    margin-top: 18px;

    font-size: 14px;

    color: #999;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* ==========================
   File Info
========================== */

.file-info {

    margin-top: 12px;

    padding: 10px 14px;

    border-radius: 12px;

    background: #f8fafc;

    color: #444;

    text-align: center;

}

.file-info strong {

    display: block;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    max-width: 100%;

    font-size: 15px;

    font-weight: 600;

}

.file-info small {

    display: block;

    margin-top: 4px;

    font-size: 13px;

    color: #666;

}

/* ==========================
   Drag Active
========================== */

.drag-active {

    border-color: #4735e5;

    background: #fff5f5;

    transform: scale(1.02);
}

.remove-btn {

    border: none;

    background: #ffe5e5;

    color: #4735e5;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    cursor: pointer;

    font-size: 20px;
}

/* ==========================
   Convert Button
========================== */

.action-area {

    margin-top: 24px;

    text-align: center;

}

.convert-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    background: #4735e5;

    color: #fff;

    border: none;

    border-radius: 14px;

    min-width: 260px;

    height: 54px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    opacity: 0.5;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.convert-btn:enabled {

    opacity: 0.5;
}

.convert-btn:hover {

    background: #3f2fd8 !important;

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(71, 53, 229, .25);

    opacity: 1;

    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;

}

button.convert-btn:disabled:hover {

    background: #4735e5;

    color: #fff;

    transform: none;

    box-shadow: none;

    cursor: not-allowed;

}

/* ===================================
   Hidden
=================================== */

.hidden {
    display: none;
}

/* ===================================
   Loading Card
=================================== */

.loading-card {

    margin-top: 28px;

    background: #ffffff;

    padding: 34px 30px;

    border-radius: 20px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);

    text-align: center;

    animation: fadeIn .35s ease;

}

.loading-card h2 {

    margin-top: 20px;

    font-size: 26px;

    color: #222;

    font-weight: 700;

}

.loading-card p {

    margin-top: 10px;

    color: #666;

    font-size: 15px;

    line-height: 1.5;

}

/* ===================================
   Spinner
=================================== */

.loader {

    width: 58px;

    height: 58px;

    margin: auto;

    border: 6px solid #ececec;

    border-top: 6px solid #4735e5;

    border-radius: 50%;

    animation: spin .9s linear infinite;
}

/* ===================================
   Success Card
=================================== */

.success-card {

    margin-top: 28px;

    background: #ffffff;

    padding: 34px 30px;

    border-radius: 20px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);

    text-align: center;

    animation: fadeIn .35s ease;

}

.success-icon {

    font-size: 58px;

    margin-bottom: 14px;

}

.success-card h2 {

    font-size: 28px;

    margin-bottom: 10px;

    color: #222;

}

.success-card p {

    color: #666;

    margin-bottom: 22px;

    font-size: 15px;

    line-height: 1.5;

}

/* ===================================
   Download File Box
=================================== */

.download-file {

    background: #f8fafc;

    border-radius: 12px;

    padding: 18px;

    margin-bottom: 30px;

    font-size: 18px;
}

/* ===================================
   Success Buttons
=================================== */

.success-actions {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: nowrap;

}

.success-actions a {

    text-decoration: none;

    line-height: 1;

}

/* ===================================
   Animation
=================================== */

@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ===================================
   Error Card
=================================== */

.error-card {

    margin-top: 28px;

    background: #ffffff;

    padding: 34px 30px;

    border-radius: 20px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);

    text-align: center;

    animation: fadeIn .35s ease;

}

.error-icon {

    font-size: 58px;

    margin-bottom: 14px;

}

.error-card h2 {

    font-size: 28px;

    color: #e53935;

    margin-bottom: 10px;

}

.error-card p {

    color: #666;

    margin-bottom: 22px;

    font-size: 15px;

    line-height: 1.5;

}

/* ==========================
   Merge PDF File List
========================== */

.file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.empty-files {
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 12px;
    color: #666;
    text-align: center;
    font-size: 14px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 12px;
    transition: .2s;
}

.file-item:hover {
    background: #eef2ff;
}

.file-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.file-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.file-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;

    @media (max-width: 720px) {
        max-width: 203px;
    }
}

.file-size {
    font-size: 12px;
    color: #777;
}

.remove-file {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #ffe5e5;
    color: #d32f2f;
    font-size: 16px;
    transition: .2s;
    flex-shrink: 0;
}

.remove-file:hover {
    background: #ffd4d4;
}

/* ==========================
   Password Card
========================== */

.password-card {

    width: 100%;
    max-width: 760px;

    margin: 40px auto;

    padding: 40px;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);

    text-align: center;

}

.password-icon {

    font-size: 34px;

    margin-bottom: 12px;

}

.password-card h2 {

    margin: 0;

    font-size: 32px;

    font-weight: 700;

    color: #222;

}

.password-text {

    margin-top: 12px;

    color: #666;

    font-size: 17px;

}

.password-file {

    margin: 28px 0 18px;

    padding: 16px;

    background: #f7f7f8;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    font-weight: 600;

    color: #333;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}

.password-step {

    margin-bottom: 22px;

    color: #888;

    font-size: 14px;

}

.password-label {

    display: block;

    margin-bottom: 10px;

    text-align: left;

    font-weight: 600;

    color: #333;

}

.password-input-group {

    display: flex;

    align-items: center;

    border: 1px solid #d9d9d9;

    border-radius: 12px;

    overflow: hidden;

}

.password-input-group input {

    flex: 1;

    border: none;

    outline: none;

    padding: 0 18px;

    height: 52px;

    font-size: 16px;

}

.toggle-password {

    width: 56px;

    height: 52px;

    border: none;

    background: #fff;

    cursor: pointer;

    font-size: 18px;

}

.password-error {

    margin-top: 12px;

    color: #dc3545;

    font-size: 14px;

    font-weight: 600;

}

.password-actions {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: nowrap;

    margin-top: 30px;

}

/* ===================================
   Password Buttons
=================================== */

.password-actions button {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-width: 260px;

    height: 54px;

    border: none;

    border-radius: 14px;

    background: #4735e5;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.password-actions .secondary-btn:hover,
.password-actions .primary-btn:hover {

    background: #3f2fd8 !important;

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(71, 53, 229, .25);

    opacity: 1;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.password-actions .secondary-btn,
.password-actions .primary-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-width: 260px;

    height: 54px;

    border: none;

    border-radius: 14px;

    background: #4735e5;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    text-decoration: none;

    opacity: 0.5;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.mobile-menu {

    display: none;

    position: absolute;

    top: 60px;

    right: 12px;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    overflow: hidden;

    width: max-content;

}

.mobile-menu.active {

    display: block;

}

.mobile-menu a {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 12px 16px;

    width: auto;

    white-space: nowrap;

    text-decoration: none;

    color: #333;

    font-size: 15px;

    transition: .2s;

}

.mobile-menu a:hover {

    background: #f5f5ff;

    color: #4735e5;

}

.mobile-menu .active-tool {

    background: #eef2ff;

    color: #4735e5;

    font-weight: 600;

}

.about-link {

    font-size: 15px;

}

/* ===================================
   Why Choose PathPDF
=================================== */

.features {

    padding: 90px 0;

    background: #ffffff;

}

.section-title {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}

.section-title h2 {

    font-size: 38px;

    font-weight: 700;

    color: #222;

    margin-bottom: 16px;

}

.section-title p {

    font-size: 18px;

    color: #666;

    line-height: 1.7;

}

.features-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

}

.feature-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 20px;

    padding: 34px;

    text-align: center;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);

    transition: .3s;

}

.feature-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);

}

.feature-icon {

    font-size: 42px;

    margin-bottom: 18px;

}

.feature-card h3 {

    font-size: 22px;

    margin-bottom: 12px;

    color: #222;

}

.feature-card p {

    font-size: 16px;

    color: #666;

    line-height: 1.7;

}

/* ===================================
   Popular PDF Tools
=================================== */

.popular-tools {

    padding: 90px 0;

    background: #f8fafc;

}

.tools-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

.tool-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 20px;

    padding: 34px;

    text-align: center;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);

    transition: .3s;

}

.tool-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);

}

.tool-icon {

    font-size: 42px;

    margin-bottom: 18px;

}

.tool-card h3 {

    font-size: 22px;

    color: #222;

    margin-bottom: 12px;

}

.tool-card p {

    color: #666;

    line-height: 1.7;

    font-size: 16px;

    margin-bottom: 24px;

}

.tool-btn {

    display: inline-block;

    text-decoration: none;

    color: #4735e5;

    font-weight: 600;

    transition: .25s;

}

.tool-btn:hover {

    color: #3f2fd8;

}

/*===================================
    HOW IT WORKS
===================================*/

.how-it-works {

    padding: 90px 0;

    background: #fff;

}

.how-wrapper {

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 70px;

    align-items: center;

}

.how-left {

    display: flex;

    justify-content: center;

    align-items: center;

}

.how-icon {

    font-size: 150px;

    line-height: 1;

}

.how-right {

    border-left: 1px solid #e5e7eb;

    padding-left: 50px;

}

.step {

    display: flex;

    gap: 24px;

    padding: 28px 0;

    border-bottom: 1px solid #ececec;

}

.step:last-child {

    border-bottom: none;

}

.step-number {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #eef2ff;

    color: #4735e5;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: 700;

    flex-shrink: 0;

}

.step-content h3 {

    font-size: 28px;

    margin-bottom: 12px;

    color: #222;

}

.step-content p {

    color: #666;

    line-height: 1.8;

    font-size: 17px;

}

.how-left {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

.how-icon {

    font-size: 120px;

    line-height: 1;

}

.how-name {

    margin-top: 16px;

    font-size: 34px;

    font-weight: 800;

    color: #4735e5;

    letter-spacing: -1px;

    line-height: 1;

    text-transform: uppercase;

}

/*===================================
        FAQ
===================================*/

.faq {

    padding: 90px 0;

    background: #f8fafc;

}

.faq-list {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 16px;

    margin-bottom: 18px;

    overflow: hidden;

}

.faq-question {

    width: 100%;

    padding: 22px 28px;

    border: none;

    background: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-size: 20px;

    font-weight: 600;

    color: #222;

}

.faq-question span {

    font-size: 28px;

    color: #4735e5;

}

.faq-answer {

    display: none;

    padding: 0 28px 22px;

}

.faq-answer p {

    color: #666;

    line-height: 1.8;

    font-size: 16px;

}

/*===================================
            Footer
===================================*/
.footer {

    background: #111827;

    padding: 22px 0 16px;

}

.footer-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

}

.footer-left {

    display: flex;

    align-items: center;

    gap: 6px;

}

.footer-right {

    display: flex;

    align-items: center;

    gap: 24px;

}

.footer-logo {

    color: #fff;

    font-size: 20px;

    font-weight: 700;

}

.footer-text {

    color: #cbd5e1;

    font-size: 15px;

}

.footer-right a {

    color: #cbd5e1;

    text-decoration: none;

    font-size: 15px;

    transition: .25s;

}

.footer-right a:hover {

    color: #fff;

}

.footer-bottom {

    text-align: center;

    padding-top: 14px;

}

.footer-bottom p {

    color: #94a3b8;

    font-size: 14px;

}

/* ==========================
   Contact Page
========================== */

.contact-page {
    padding: 20px 0 30px;
    background: #f5f7fb;
}

.contact-box {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.contact-box h2 {
    text-align: center;
    font-size: 26px;
    margin: 0 0 6px;
    color: #1f2937;
}

.contact-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-box select,
.contact-box textarea,
.contact-box input[type="email"] {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: .25s;
}

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

.contact-box select:focus,
.contact-box textarea:focus,
.contact-box input[type="email"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.contact-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-check a {
    color: #2563eb;
    text-decoration: none;
}

.contact-check a:hover {
    text-decoration: underline;
}

.contact-submit {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 54px;

    text-decoration: none;

    background: #4735e5;

    color: #fff;

    border: none;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    opacity: .5;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.contact-submit:enabled {

    opacity: .5;

}

.contact-submit:hover {

    background: #3f2fd8;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(71, 53, 229, .25);

    opacity: 1;

}

.contact-submit:disabled {

    cursor: not-allowed;

}

.contact-submit:disabled:hover {

    background: #4735e5;

    color: #fff;

    transform: none;

    box-shadow: none;

}

.contact-note {
    margin: 8px 0 0;
    text-align: center;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
}

.toast {

    position: fixed;

    top: 87px;
    /* Below the 64px header */
    right: 24px;

    min-width: 300px;
    max-width: 360px;

    padding: 14px 18px;

    border-radius: 10px;

    color: #fff;
    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

    z-index: 99999;
}

.toast.show {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

}

.toast.success {
    background: #22c55e;
    color: #fff;
    border: 1px solid #16a34a;
}

.toast.error {
    background: #dc2626;
    color: #fff;
    border: 1px solid #b91c1c;
}

/* ==========================
   Privacy Policy
========================== */

.policy-box {

    max-width: 900px;

}

.policy-content {

    margin-top: 28px;

}

.policy-content h3 {

    margin: 34px 0 12px;

    padding-bottom: 10px;

    border-bottom: 1px solid #ececec;

    font-size: 22px;

    font-weight: 700;

    color: #222
}

.policy-content h3:first-child {

    margin-top: 0;

}

.policy-content p {

    margin-bottom: 18px;

    color: #555;

    font-size: 16px;

    line-height: 1.9;

}

.policy-content ul {

    margin: 12px 0 22px 22px;

}

.policy-content li {

    margin-bottom: 12px;

    color: #555;

    line-height: 1.8;

    font-size: 16px;

}

.policy-content a {

    color: #4735e5;

    text-decoration: none;

    font-weight: 600;

}

.policy-content a:hover {

    text-decoration: underline;

}

.policy-updated {

    text-align: center;

    color: #6b7280;

    font-size: 15px;

    margin-top: 6px;

    margin-bottom: 28px;

}

/* ==========================
   Privacy Policy & Terms
========================== */

.policy-box {

    max-width: 900px;

}

.policy-content {

    margin-top: 28px;

}

.policy-content h3 {

    margin: 34px 0 12px;

    padding-bottom: 10px;

    border-bottom: 1px solid #ececec;

    font-size: 22px;

    font-weight: 700;

    color: #222;

}

.policy-content h3:first-child {

    margin-top: 0;

}

.policy-content p {

    margin-bottom: 18px;

    color: #555;

    font-size: 16px;

    line-height: 1.9;

}

.policy-content ul {

    margin: 12px 0 22px 22px;

}

.policy-content li {

    margin-bottom: 12px;

    color: #555;

    line-height: 1.8;

    font-size: 16px;

}

.policy-content a {

    color: #4735e5;

    text-decoration: none;

    font-weight: 600;

}

.policy-content a:hover {

    text-decoration: underline;

}

.policy-updated {

    text-align: center;

    color: #6b7280;

    font-size: 15px;

    margin-top: 6px;

    margin-bottom: 28px;

}

.footer-about {

    display: none;

}

/* ==========================
   404 Page
========================== */

.error-404 {

    text-align: center;

    max-width: 700px;

}

.error-code {

    font-size: 110px;

    font-weight: 800;

    line-height: 1;

    color: #4735e5;

    margin-bottom: 18px;

}

.error-404 h2 {

    font-size: 34px;

    color: #222;

    margin-bottom: 14px;

}

.error-text {

    max-width: 500px;

    margin: 0 auto 32px;

    font-size: 17px;

    line-height: 1.8;

    color: #666;

}

.error-actions {

    display: flex;

    justify-content: center;

}

.error-actions .contact-submit {

    width: auto;

    min-width: 220px;

    text-decoration: none;

}

.policy-box h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.contact-box h1{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

