/* Single Tech Demo Result Page Styles */

/* Hero Section */
.single-demo-result-hero {
    background: #53834F;
    padding: 20px 0 40px;
}

.single-demo-result-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.single-demo-breadcrumb {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: left;
}

.single-demo-breadcrumb .breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.single-demo-breadcrumb .breadcrumb-link:hover {
    opacity: 0.8;
}

.single-demo-breadcrumb .breadcrumb-separator {
    margin: 0 10px;
    color: #ffffff;
}

.single-demo-breadcrumb .breadcrumb-current {
    color: #ffffff;
}

/* Hero Title */
.single-demo-hero-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* Hero Dots */
.single-demo-hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.single-demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e6ae25;
}

/* Content Section */
.single-demo-result-content-section {
    background: #FBF9F4;
    padding: 60px 0;
}

.demo-content {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.demo-content h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: #E6AE25;
    padding: 12px 20px;
    margin: 40px 0 20px 0;
    border-radius: 8px;
    display: inline-block;
}

.demo-content h2:first-child {
    margin-top: 0;
}

.demo-content-text {
    margin: 0 0 30px 0;
}

.demo-content p {
    margin: 0 0 20px 0;
}

.demo-content ul,
.demo-content ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.demo-content li {
    margin-bottom: 10px;
}

.demo-content strong {
    font-weight: 700;
    color: #42210b;
}

.demo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.demo-content th,
.demo-content td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.demo-content th {
    background: #f5f5f5;
    font-weight: 700;
}

/* PDF Download Section */
.pdf-download-section {
    text-align: center;
    margin: 60px 0 0 0;
    padding-top: 40px;
    border-top: 2px solid #E0E0E0;
}

.pdf-download-button {
    display: inline-block;
    padding: 18px 60px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: #E6AE25;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.pdf-download-button:hover {
    background: #D39E1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 174, 37, 0.4);
}

.pdf-download-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(230, 174, 37, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-demo-result-hero {
        padding: 15px 0 30px;
    }

    .single-demo-breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .single-demo-hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .single-demo-hero-dots {
        gap: 8px;
    }

    .single-demo-dot {
        width: 8px;
        height: 8px;
    }

    .single-demo-result-content-section {
        padding: 40px 0;
    }

    .single-demo-result-container {
        padding: 0 15px;
    }

    .demo-content {
        font-size: 15px;
    }

    .demo-content h2 {
        font-size: 18px;
        padding: 10px 16px;
        margin: 30px 0 15px 0;
    }

    .pdf-download-section {
        margin: 40px 0 0 0;
        padding-top: 30px;
    }

    .pdf-download-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
}
