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

body {
    padding-top: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

body li {
    display: block;
}

ul {
    padding-left: 0;
}

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

/* Header Styles */


.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    width: 300px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Article Styles */
.main-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.breaking-news {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.article-title {
    font-size: 28px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight {
    color: #dc3545;
    font-weight: 800;
    background: linear-gradient(120deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

.article-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
}

.article-meta {
    margin-bottom: 25px;
}

.date {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: translateY(-1px);
}

/* Social Share */
.social-share {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    color: white;
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.more {
    background: #6c757d;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Main Image */
.main-image-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    padding: 30px;
}

.image-overlay h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffd700;
}

.image-overlay p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Article Content */
.article-content {
    border-top: 2px solid #f1f3f4;
    padding-top: 25px;
}

.article-date-footer {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.read-count {
    color: #dc3545;
    font-weight: 600;
}

.article-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
    margin-bottom: 25px;
}

.article-highlight h3 {
    color: #856404;
    font-size: 18px;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.registration-header h3 {
    color: #dc3545;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.registration-header p {
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.6;
}

.countdown-section {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 10px;
    border-left: 5px solid #ffc107;
}

.countdown-text {
    font-size: 16px;
    color: #856404;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown-timer {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
    font-family: 'Courier New', monospace;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-timer span {
    background: #dc3545;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    min-width: 50px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.time-label {
    background: none !important;
    color: #dc3545 !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    animation: none !important;
    min-width: auto !important;
}

.registration-form {
    max-width: 400px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-group input:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    transform: translateY(-1px);
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
    color: #495057;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.phone-group input {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333, #a71e2a);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Minister Section */
.minister-section {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.minister-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-info h3 {
    color: #1a1a1a;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.program-info h4 {
    color: #dc3545;
    font-size: 18px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.investment-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
    margin: 25px 0;
}

.investment-highlight p {
    color: #856404;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.process-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.process-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #495057;
}

.payment-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.example-card {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #28a745;
    position: relative;
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.example-card h5 {
    color: #155724;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.example-card p {
    color: #155724;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.amount {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

/* Program Details Section */
.program-details-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border-left: 5px solid #dc3545;
}

.detailed-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.detailed-benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
    color: #495057;
    line-height: 1.6;
}

.detailed-benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.detailed-benefits-list li:last-child {
    border-bottom: none;
}

.guarantee-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.guarantee-highlight p {
    color: #856404;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.detailed-process-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.detailed-process-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #495057;
    font-size: 15px;
}

.payment-schedule {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #28a745;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
}

.payment-schedule h4 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 18px;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Comments Section */
.comments-section {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc3545;
}

.comments-title {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.comment {
    display: flex;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
    transition: all 0.3s ease;
}

.comment:hover {
    background: #f1f3f4;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.comment:last-child {
    margin-bottom: 0;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #dc3545;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comment:hover .comment-avatar {
    transform: scale(1.1);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}

.comment-time {
    color: #6c757d;
    font-size: 14px;
}

.comment-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.comment-btn {
    background: none;
    border: 2px solid #e9ecef;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.like-btn {
    color: #28a745;
    border-color: #28a745;
}

.like-btn:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
}

.dislike-btn {
    color: #6c757d;
    border-color: #6c757d;
}

.dislike-btn:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.reply-btn {
    color: #dc3545;
    border-color: #dc3545;
}

.reply-btn:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.like-count,
.dislike-count {
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.payment-list li {
    padding: 8px 0;
    color: #155724;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.payment-list li:before {
    content: "💰";
    position: absolute;
    left: 0;
    font-size: 16px;
}

.payment-list li:first-child {
    font-weight: 700;
    font-size: 16px;
    color: #dc3545;
}

.faq-section {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.faq-section h4 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h5 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding-left: 15px;
}

/* Survey Block */
.survey-block {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border: 2px solid #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
    text-align: center;
}

.survey-question h3 {
    color: #dc3545;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.survey-question p {
    color: #495057;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.survey-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.survey-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.survey-yes {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.survey-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333, #a71e2a);
}

.survey-no {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.survey-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
    background: #5a6268;
}

/* Investment Quiz Styles */
.investment-quiz {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
    display: none;
}

.investment-quiz.active {
    display: block;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-header h3 {
    color: #dc3545;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.quiz-header p {
    color: #495057;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quiz-progress {
    max-width: 300px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc3545, #ffc107);
    border-radius: 10px;
    width: 20%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.quiz-question {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid #dc3545;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.question-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quiz-option:hover {
    border-color: #dc3545;
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.quiz-option.selected {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    color: #dc3545;
    font-weight: 600;
}

.quiz-option::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.quiz-option.selected::before {
    background: #dc3545;
    border-color: #dc3545;
    box-shadow: inset 0 0 0 3px white;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.quiz-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quiz-prev {
    background: #6c757d;
    color: white;
}

.quiz-prev:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.quiz-next {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    margin-left: auto;
}

.quiz-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.quiz-next:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Quiz Result Form */
.quiz-result-form {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    color: white;
    text-align: center;
    border: 2px solid #dc3545;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.result-header {
    margin-bottom: 30px;
}

.result-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

.result-header h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.result-score {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.score-label {
    font-size: 16px;
    color: #bdc3c7;
}

.score-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.result-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 0;
}

.quiz-contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.quiz-contact-form .iti {
    color: #fff;
}

/* .quiz-contact-form .form-group {
    margin-bottom: 0;
} */

.quiz-contact-form input,
.quiz-contact-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: 8px;
    background: rgba(52, 73, 94, 0.8);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.quiz-contact-form input::placeholder {
    color: #bdc3c7;
}

.quiz-contact-form input:focus,
.quiz-contact-form select:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: rgba(52, 73, 94, 0.9);
}

.investment-amount {
    margin-bottom: 25px;
}

.investment-amount label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ecf0f1;
}

.quiz-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.quiz-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333, #a71e2a);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .investment-quiz {
        padding: 10px;
        margin: 20px 0;
    }

    .quiz-header h3 {
        font-size: 20px;
    }

    .quiz-question {
        padding: 20px;
    }

    .question-title {
        font-size: 16px;
    }

    .quiz-option {
        padding: 12px 15px;
        font-size: 14px;
    }

    .quiz-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .quiz-next {
        margin-left: 0;
        width: 100%;
    }

    .quiz-result-form {
        padding: 25px;
    }

    .result-header h3 {
        font-size: 22px;
    }

    .score-value {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .registration-section {
        padding: 20px;
        margin: 20px 0;
    }

    .program-details-section {
        padding: 20px;
        margin: 20px 0;
    }

    .guarantee-highlight {
        padding: 15px;
    }

    .payment-schedule {
        padding: 15px;
    }

    .faq-section {
        padding: 15px;
    }

    .countdown-timer {
        font-size: 18px;
    }

    .countdown-timer span {
        padding: 3px 6px;
        min-width: 30px;
    }

    .phone-group {
        flex-direction: column;
    }

    .phone-prefix {
        border-radius: 8px 8px 0 0;
        border-right: 2px solid #e9ecef;
        width: 100%;
        justify-content: center;
    }

    .phone-group input {
        border-radius: 0 0 8px 8px;
        border-left: 2px solid #e9ecef;
        border-top: none;
    }

    .minister-image {
        height: 250px;
    }

    .payment-examples {
        grid-template-columns: 1fr;
    }

    .comments-section {
        padding: 10px;
        margin: 20px 0;
    }

    .comments-title {
        font-size: 20px;
    }

    .comment {
        flex-direction: column;
        padding: 15px;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 10px;
        align-self: flex-start;
    }

    .comment-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .comment-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .program-info h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 568px) {
    .countdown-timer {
        justify-content: space-around;
    }

    .image-overlay {
        display: none;
    }

    .countdown-section {
        padding: 10px;
    }

    .countdown-timer span {
        font-size: 20px;
    }

    .countdown-timer .ddd {
        display: flex;
        flex-direction: column;
    }

    .time-label {
        font-size: 16px !important;
    }
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sidebar-title {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: #ffd700;
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.sidebar-article {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-article:last-child {
    border-bottom: none;
}

.sidebar-article:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.sidebar-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.sidebar-article:hover .sidebar-image {
    transform: scale(1.05);
}

.sidebar-content {
    flex: 1;
}

.sidebar-content h4 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.sidebar-category {
    background: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .search-box input {
        width: 100%;
        max-width: 300px;
    }

    .main-article {
        padding: 20px;
    }

    .article-title {
        font-size: 22px;
    }

    .main-image {
        height: 250px;
    }

    .image-overlay {
        padding: 20px;
    }

    .image-overlay h2 {
        font-size: 18px;
    }

    .tags {
        gap: 8px;
    }

    .tag {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 20px;
    }

    .main-image {
        height: 200px;
    }

    .image-overlay {
        padding: 15px;
    }

    .image-overlay h2 {
        font-size: 16px;
    }

    .sidebar-article {
        flex-direction: column;
    }

    .sidebar-image {
        width: 100%;
        height: 120px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .social-share {
        justify-content: center;
    }
}

/* Online Chat Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.6);
}

.chat-button i {
    color: white;
    font-size: 24px;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.8);
    }

    100% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    60% {
        transform: translateY(-1px);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chat-window.active {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.manager-avatar {
    position: relative;
}

.manager-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.online-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border: 2px solid white;
    border-radius: 50%;
}

.manager-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.manager-info .status {
    font-size: 12px;
    opacity: 0.9;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manager-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: white;
    padding: 12px 15px;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.4;
}

.user-message .message-content {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

.typing-indicator {
    padding: 10px 15px;
    background: #f8f9fa;
    display: none;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e9ecef;
}

.typing-indicator.active {
    display: flex;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #dc3545;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.typing-text {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-container input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.chat-input-container input:focus {
    border-color: #dc3545;
}

.chat-input-container button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-input-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

/* Contact Form Modal */
.contact-form-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow-y: auto;
    z-index: 1;
}

.contact-form-modal.active {
    display: flex;
}

.contact-form-content {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    border: 2px solid #dc3545;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    position: relative;
    margin: 20px auto;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-form-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.contact-form-close:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.contact-form-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}

.contact-form-content p {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 14px;
}

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

.contact-form input {
    padding: 12px 15px;
    border: 2px solid #dc3545;
    border-radius: 25px;
    background: rgba(52, 73, 94, 0.8);
    color: white;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder {
    color: #bdc3c7;
}

.contact-form input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.contact-submit-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
    background: linear-gradient(135deg, #c82333, #a71e2a);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chat-window {
        width: 300px;
        height: 450px;
        bottom: 70px;
        right: -10px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
    }

    .chat-button i {
        font-size: 20px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-article {
    animation: fadeInUp 0.8s ease-out;
}

.sidebar-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Protection Styles */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Disable highlighting */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

/* Hide scrollbars to prevent inspection */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 4px;
}

/* Disable outline on focus */
*:focus {
    outline: none !important;
}

/* Prevent text selection on specific elements */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only in input fields */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}