/* Mac Browser Window Mockup Styles */
.browser-frame {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: white;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.browser-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.browser-header {
    background: #f1f5f9;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 8px;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ff5f56;
    border: 1px solid #e0443e;
}

.control-dot.yellow {
    background: #ffbd2e;
    border: 1px solid #dea123;
}

.control-dot.green {
    background: #27ca40;
    border: 1px solid #1aab29;
}

.browser-address-bar {
    background: white;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.8rem;
    color: #64748b;
    flex-grow: 1;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.browser-content {
    line-height: 0;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Backward compatibility for transition if needed, but we will update HTML */
.monitor-frame {
    display: none;
}

/* Footer Styles (Added for consistency across all pages) */
.footer {
    background: #003C5A;
    /* Fallback if var not defined */
    background: var(--primary-dark, #003C5A);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
    text-align: left;
    /* Ensure left alignment overrides any inline center */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
    /* Remove bullets */
    padding: 0;
    margin: 0;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo img {
    filter: none !important;
}