/* SEO Optimizations - External CSS for better page speed */

/* Urgency Banner Styles - Hidden for clean UX */
.urgency-banner {
    display: none !important; /* Hide all urgency banners */
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 15px;
    text-align: center;
    margin: 0;
    border-radius: 0;
}

.urgency-banner p {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

.countdown {
    display: none !important; /* Hide all countdown elements */
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Trust Signals Styles */
.trust-signals {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
    text-align: center;
}

.trust-signals h4 {
    color: #333;
    margin-bottom: 15px;
}

.trust-signals > div {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item i {
    font-size: 24px;
}

.trust-item i.fa-user-md {
    color: #28a745;
}

.trust-item i.fa-clock {
    color: #007bff;
}

.trust-item i.fa-dollar-sign {
    color: #ffc107;
}

.trust-item i.fa-star {
    color: #fd7e14;
}

.trust-item > div:first-of-type {
    font-weight: bold;
    margin-top: 5px;
}

.trust-item > div:last-of-type {
    font-size: 12px;
    color: #666;
}

/* About Section Styles */
.about-info h2 {
    white-space: nowrap;
}

.about-info h2 span {
    display: inline-block;
    vertical-align: middle;
}

.about-info h2 a {
    position: relative;
    top: -20px;
}

.about-info h2 img {
    display: inline-block;
    vertical-align: middle;
}

.about-info .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-info .flex-container span {
    display: inline-block;
}

.about-info .flex-container a {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -30px;
}

.about-info .flex-container img {
    vertical-align: middle;
}

/* Image Caption Styles */
.image-caption p {
    margin-top: 15px;
    text-align: left;
}

.image-caption a {
    font-size: 0.9em;
    color: #3498db;
    text-decoration: none;
    margin-left: 10px;
}

/* Nerve Pulse Container */
#nervePulseContainer {
    position: relative;
    display: inline-block;
}

#brainImage {
    margin-top: 40px;
}

#nerveCanvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-signals > div {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        margin-bottom: 10px;
    }
    
    .urgency-banner p {
        font-size: 14px;
    }
    
    .countdown {
        display: none !important; /* Hide all countdown elements */
        font-size: 16px;
    }
}

/* Schema Markup Enhancement Styles */
.schema-enhanced {
    position: relative;
}

.schema-enhanced[itemtype] {
    display: block;
}

/* Internal Linking Enhancement */
.internal-link-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

.internal-link-section h4 {
    color: #007bff;
    margin-bottom: 15px;
}

.internal-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.internal-link-item {
    background: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.2s ease;
}

.internal-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.internal-link-item i {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 8px;
}

.internal-link-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.internal-link-item a:hover {
    color: #007bff;
} 